Abstraction and interface in java
Aug 21, 2023 · 3 min read · Abstraction 'abstract' is a non-access modifier in Java for classes and methods but not variables. Characteristic of abstract keyword : Can't create an object directly. You need to extend it by some other class. The abstract method does not have a ...
Join discussion