I am bored, very bored. I do not know what to read/do today.
Edit:
I started a timer for 25 mins.
What's up with Java?
- Platform independent
- Object oriented
- Speed - Well written Java is near to C++ and faster than Python.
https://docs.oracle.com/javase/tutorial/
Date-time Design principles
Clear, Fluent, Immutable
// Fluent principle example
LocalDate today = LocalDate.now();
LocalDate payday = today.with(TemporalAdjusters.lastDayOfMonth()).minusDay(2);
Available packages in java.time
:
java.time
java.time.chrono
java.time.format
java.time.temporal
java.time.zone
Essential Java Classes
Exceptions
- Basic I/O
- Concurrency
- Regular Expressions
- The Platform Environment
Capstone project 🚅🎯
HRApp
with Employee
and Department
https://github.com/j143/java-capstone-01
As per https://mylearn.oracle.com/learning-path/java-explorer/40805/79726
💡We can generate
getter
andsetter
methods andConstructor
s in the IDE
Top comments (0)