PKPratik Kumar Jhainpratik05jha.hashnode.dev·Aug 21, 2023 · 3 min readAbstraction and interface in javaAbstraction '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 ...00