Reputation: 815
I´d like to know...
I know that an abstract class, is used for interface purpose.
What about the concrete class? It is the one who subclasses the abstract class?
Thanks.
Upvotes: 0
Views: 156
Reputation: 239
A concrete class, is a class for which entities (instances) may be created. unlike abstract class, Concrete classes have no virtual member functions or protected members. concrete exist in reality.
Upvotes: 0
Reputation: 39466
A concrete class is a class that can be instantiated, as opposed to abstract classes, which cannot.
Upvotes: 2