What's the difference between these two?
virtual void calculateBase() = 0;
virtual void calculateBase();
I read the first one (=0) is a "pure abstract function" but what does that make the second one?
|
|
|
|
|
|
|
First one is called a pure virtual function. Normally pure virtual functions will not have any implementation and you can not create a instance of a class containing a pure virtual function. Second one is a virtual function (i.e. a 'normal' virtual function). A class provides the implementation for this function, but its derived class can override this implementation by providing its own implementation for this method. |
||
|
|
|
|
The first one is a "pure virtual" - it will make the class abstract, attempting to instantiate it will result in compiler errors. It is meant to be used as a base class where the derived class implements the necessary behaviour pure virtual function. You do not have to implement the function in the base class, though you can.
The second declaration is just an ordinary virtual member function declaration. You will get compiler errors if you fail to implement the member function in the base class. It is still virtual which implies that it may be useful to override the behaviour in a derived class. |
||||
|
|
|
the first one doesnt have to implemented in the base class, but enforces to implement it in inherited classes. 2nd one you have to implement in the base class and can be implemented in the inherited classes |
||
|
|
|
|
In Java
would be
and
would be
To be perfectly clear,
in C++, is "the same" as
in Java. That is, final is "default" in C++. There is an exception to this rule however. When subclassing a class with a virtual method and reimplementing it without using the virtual keyword, the method in the subclass will not be final. |
||
|
|
|
|
Basically, when inheriting, you are compelled to override the first one, and are allowed to override the second one. Coming from Java, don't you? |
||
|
|
|
|
The second function can have an implementation in the class that declare it (lack of '= 0'), and can be overriden by subClasses. The first function can't have an implementation ine the class that declare it, and has to be implemented by subClasses |
||
|
|
|
|
I think you are mixing terms...
is a pure virtual function, or abstract function. It is a virtual function without implementation. You talk about a pure abstract class, which is the c++ equivalent of an interface, about a class having only abstract functions.
is a virtual function, meaning it can be redefined in derived classes, but it's not abstract, so you must provide an implementation for it. |
||
|
|
|
|
The first function is Pure virtual function where the implementation can not be done in the class and it act as pure abstract class or Interface class. The concrete implementation should be done or overriden in subclass. It act as interface class to its derived classes.
This function is virtual function where the implementation (default) can be done in the base class. But, the derived class must be overriden its own imeplementation. |
||
|
|