Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/poltanek/javapractice
Bunch of Java Programs I created for learning purposes from simple programs towards creating some low level programs.
https://github.com/poltanek/javapractice
java practice swing
Last synced: 19 days ago
JSON representation
Bunch of Java Programs I created for learning purposes from simple programs towards creating some low level programs.
- Host: GitHub
- URL: https://github.com/poltanek/javapractice
- Owner: Poltanek
- License: mit
- Created: 2024-08-09T16:48:07.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-11-05T20:15:28.000Z (3 months ago)
- Last Synced: 2024-11-05T20:36:46.704Z (3 months ago)
- Topics: java, practice, swing
- Language: Java
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![image](https://github.com/user-attachments/assets/54e4c592-28f5-48e6-92d8-df6f3b72d813)
![image](https://github.com/user-attachments/assets/8040f4d6-3530-498a-a091-7740408a1083)
![image](https://github.com/user-attachments/assets/7ac6ac03-5520-44e6-91be-a15acd135355)
![image](https://github.com/user-attachments/assets/ad7b1609-ba71-45f7-907b-f014554a45cf)
```
Point point1 = new Point(x1, y1);
Point point2 = point1;
point1.x = 5;System.out.println(point2.x);
```