top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is abstract class?

+2 votes
220 views
What is abstract class?
posted Sep 19, 2014 by Varnita Chaudhari

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Abstract classes are classes that contain one or more abstract methods where an abstract method is a method that is declared but contains no implementation.

Abstract classes may not be instantiated, and require subclasses to provide implementations for the abstract methods.

answer Sep 19, 2014 by Salil Agrawal
Similar Questions
+2 votes

What is the difference between abstract class and concrete class in java. If concrete class is final then how can inherit concrete class, can someone please explain in detail?

+2 votes

Many books gives this impression, Can someone explain this may be with reallife example?

...