Describe the characteristics of an abstract class in java
What is Abstract class?
Answer: 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
Describe the characteristics of an abstract class in java
Answer:1.An adstract class must be declared with an abstract keyword
2. it can have adstract and non-abstract methods
3.it cannot be instantiated
4.it can have constructors and static methods
5.it can have final methods which will force the subclass not to change the body of the method
Get Answers For Free
Most questions answered within 1 hours.