Marcelo Noronha
Marcelo Noronha

Reputation: 815

Abstract classes and Concrete Classes

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

Answers (2)

JTN
JTN

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

Marty
Marty

Reputation: 39466

A concrete class is a class that can be instantiated, as opposed to abstract classes, which cannot.

Upvotes: 2

Related Questions