Java finalize() method | Java 8
Java Object class has a method called finalize which is provide for garbage collector. Actually garbage collector (GC) cleans up objects from heap after certian time. We have a seperate…
Java Optional Class | Java 8
The null pointer exception is one of the most classic of all errors. Normally developers use try catch blocks to handle this. But with Java 8 , we can use…