An open API service indexing awesome lists of open source software.

https://github.com/darkmortal/java-practice

Java Practice Files and Examples
https://github.com/darkmortal/java-practice

dsa-algorithm java java-21

Last synced: 11 months ago
JSON representation

Java Practice Files and Examples

Awesome Lists containing this project

README

          

# Java Data Structure Practice Files and Examples

## 1. [HashSets](https://www.youtube.com/watch?v=QvHBHuuddYk)
## 2. [ArrayLists](https://www.youtube.com/watch?v=NbYgm0r7u6o)
## 3. [Reflections](https://www.youtube.com/watch?v=bhhMJSKNCQY)
## 4. [Records](https://www.youtube.com/watch?v=gJ9DYC-jswo)
## 5. [Optionals](https://www.youtube.com/watch?v=gJ9DYC-jswo)

New things in Java 21
- Default access specifier for all attributes and methods of a class is ```public```.
- No need to specify the main method within a class that has the same name as the filename.
***