An abstract class is a class for which one or more methods are declared but not defined, meaning that the compiler knows these methods are part of the class, but not what code to execute for that method. These are called abstract methods. A concrete class is a class that can be used to create an object. An abstract class cannot be used to create an object (we must extend an abstract class and make a concrete class to be able to then create an object).
Join MindStick Community
You need to log in or register to vote on answers or questions.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
A concrete class is a class that can be used to create an object. An abstract class cannot be used to create an object (we must extend an abstract class and make a concrete class to be able to then create an object).