Can we write abstract keyword in C++ class?
|
|
|||||
|
|
|
No, C++ has no keyword abstract. However, you can write pure virtual functions; that's the C++ way of expressing abstract classes. |
||
|
|
|
|
No. Pure virtual functions, in C++, are declared as:
Any class having at least one of them is considered abstract. |
||||||
|
|
|
no, you need to have at least one pure virtual function in a class to be abstract. Here is a good reference cplusplus.com |
||
|
|
|
|
It is a keyword introduced as part of the C++/CLI language spefication for the .NET framework. |
||||||||
|
|
|
|
||
|
|
