vote up 0 vote down star

Can we write abstract keyword in C++ class?

flag
2  
Sure, we can do it. Unfortunately the code will not compile, though =) – SadSido Aug 19 at 10:27

5 Answers

vote up 11 vote down

No, C++ has no keyword abstract. However, you can write pure virtual functions; that's the C++ way of expressing abstract classes.

link|flag
vote up 11 vote down

No.

Pure virtual functions, in C++, are declared as:

class X
{
    public:
        virtual void foo() = 0;
};

Any class having at least one of them is considered abstract.

link|flag
1  
Missing return type. Also the method should be virtual. – Naveen Aug 19 at 6:42
Absolutely correct, thank you. Man, I have to get my head out of code maintenance and into writing new code once in a while - it dissolves your brain only looking at other people's errors. :-D – DevSolar Aug 19 at 9:10
vote up 3 vote down

no, you need to have at least one pure virtual function in a class to be abstract.

Here is a good reference cplusplus.com

link|flag
vote up 2 vote down

It is a keyword introduced as part of the C++/CLI language spefication for the .NET framework.

link|flag
2  
...which isn't C++. Seriously, ref, that's encroachment... – DevSolar Aug 19 at 6:31
1  
Technically, it's a Microsoft C++ extension for native code even if you don't target .NET, so it's not C++/CLI specific. Just an extension, same as __interface or __declspec(property). Still not ISO C++ of course. – Pavel Minaev Aug 19 at 7:03
vote up 1 vote down
#define abstract
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.