Yes , we can declare local inner class as abstract.
Read moreWhat is inside abstract class in Java?
A class which is declared with the abstract keyword is known as an abstract class in Java. It can have abstract and non-abstract methods (method with the body). Before learning the Java abstract class, let’s understand the abstraction in Java first.
Read more