
Java Non-Access Modifiers
We’re familiar with access modifiers however, have you ever heard of Java’s non-access modifiers? abstract— This modifier is used to create an abstract class or method that cannot be instantiated directly. An abstract class must be extended by a subclass that provides concrete implementations of its abstract methods. …