Java Notes

OOP Concepts

Encapsulation, Abstraction, Inheritance, Polymorphism...

class Animal { void speak() { System.out.println("Sound"); } }

Exception Handling

Try, catch, finally, throw, throws...

try { ... } catch(Exception e) { ... }
Can’t find what you're looking for? Request a topic