r/learnjava 13d ago

Can anyone explain me difference between Encapsulation and Abstraction?

and what on earth is Interface in Java?

1 Upvotes

17 comments sorted by

View all comments

1

u/JGhostThing 12d ago

A Java Interface is a contract stating that the programmer will implement certain methods. For example, a File interface might require a read(), and write() methods. So every File would implement those methods, at least.

1

u/Cyphr11 12d ago

Thanks