Is the 'override' keyword just a check for a overridden virtual method?

C++C++11OverridingVirtual FunctionsC++ Faq

C++ Problem Overview


As far as I understand, the introduction of override keyword in C++11 is nothing more than a check to make sure that the function being implemented is the overrideing of a virtual function in the base class.

Is that it?

C++ Solutions


Solution 1 - C++

That's indeed the idea. The point is that you are explicit about what you mean, so that an otherwise silent error can be diagnosed:

struct Base
{
    virtual int foo() const;
};

struct Derived : Base
{
    virtual int foo()   // whoops!
    {
       // ...
    }
};

The above code compiles, but is not what you may have meant (note the missing const). If you said instead, virtual int foo() override, then you would get a compiler error that your function is not in fact overriding anything.

Solution 2 - C++

Wikipedia quote:

> The override special identifier means that the compiler will check the base class(es) to see if there is a virtual function with this exact signature. And if there is not, the compiler will error out.

http://en.wikipedia.org/wiki/C%2B%2B11#Explicit_overrides_and_final

Edit (attempting to improve a bit the answer):

Declaring a method as "override" means that that method is intended to rewrite a (virtual) method on the base class. The overriding method must have same signature (at least for the input parameters) as the method it intends to rewrite.

Why is this necessary? Well, the following two common error cases are prevented:

  1. one mistypes a type in the new method. The compiler, unaware that it is intending to write a previous method, simply adds it to the class as a new method. The problem is that the old method is still there, the new one is added just as an overload. In this case, all calls towards the old method will function just as before, without any change in behavior (which would have been the very purpose of the rewriting).

  2. one forgets to declare the method in the superclass as "virtual", but still attempts to re-write it in a subclass. While this will be apparently accepted, the behavior won't be exactly as intended: the method is not virtual, so access through pointers towards the superclass will end calling the old (superclass') method instead of the new (subclass') method.

Adding "override" clearly disambiguates this: through this, one is telling the compiler that three things are expecting:

  1. there is a method with the same name in the superclass
  2. this method in the superclass is declared as "virtual" (that means, intended to be rewritten)
  3. the method in the superclass has the same (input*) signature as the method in the subclass (the rewriting method)

If any of these is false, then an error is signaled.

* note: the output parameter is sometimes of different, but related type. Read about covariant and contravariant transformations if interested.

Solution 3 - C++

Found "override" is useful when somebody updated base class virtual method signature such as adding an optional parameter but forgot to update derived class method signature. In that case the methods between the base and the derived class are no longer polymorphic relation. Without the override declaration, it is hard to find out this kind of bug.

Solution 4 - C++

Yes, this is so. It's a check to make sure one doesn't try an override and mess it up through a botched signature. Here's a Wiki page that explains this in detail and has a short illustrative example:

http://en.wikipedia.org/wiki/C%2B%2B11#Explicit_overrides_and_final

Solution 5 - C++

C++17 standard draft

After going over all the override hits on the C++17 N4659 standard draft, the only reference I can find to the override identifier is:

> 5 If a virtual function is marked with the virt-specifier override and does not override a member function of a base class, the program is ill-formed. [ Example:

> struct B { virtual void f(int); };

> struct D : B { virtual void f(long) override; // error: wrong signature overriding B::f virtual void f(int) override; // OK }

> — end example ]

so I think that possibly blowing up wrong programs is actually the only effect.

Solution 6 - C++

To clarify everything about virtual (since I've been running into this repeatedly!).

  • virtual is for the base class to tell derived classes a function can be overridden
    • There is no need to use virtual in derived classes. If a function has the same name/parameter type list/cv-qual/ref-qual, it will automatically be used correctly.
    • (actually, using virtual in derived classes can create subtle bugs, see below)
  • override is an optional specifier for derived classes to catch errors & document code:
    • Tells the compiler: "make sure there is an EXACT virtual function I am overriding"
      • Avoids creating a DIFFERENT function signature by mistake that would cause a subtle bug (i.e. 2 slightly different functions that are meant to be the same)
      • Tells coders this is overriding a virtual function

So given:

class base
{
public:
	virtual int foo(float x);
};

Here how would fare some different overrides:

// AUTOMATIC virtual function (matches original, no keywords specified)
int foo(float x) { ; } 

// Re-specifying "virtual" uselessly (+ see pitfalls below)
virtual int foo(float x) { ; } 

// Potential issues: it is unknown if the author intended this to be a 
//    virtual function or not. Also, if the author DID intend a match but 
//    made a mistake (e.g. use "int" for the parameter), this will create
//    a subtle bug where the wrong function is called with no warning anywhere:

int foo(int x) { ; }         // SUBTLE, SILENT BUG! int instead of float param
virtual int foo(int x) { ; } // SUBTLE, SILENT BUG! int instead of float param


// Better approach: use the 'override' identifier to 
//    make sure the signature matches the original virtual function,
//    and documents programmer intent.

int foo(float x) override { ; }        // Compiler checks OK + tells coder this is virtual
int foo(int x)  override { ; }         // COMPILE ERROR, caught subtle bug
virtual int foo(int x)  override { ; } // COMPILE ERROR, caught subtle bug
                                       // (and redundant use of "virtual")

Finally (!), the final specifier can be used instead of override for the same reasons, but in the case you want no further overrides in derived classes.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionaiaoView Question on Stackoverflow
Solution 1 - C++Kerrek SBView Answer on Stackoverflow
Solution 2 - C++user1284631View Answer on Stackoverflow
Solution 3 - C++user3792211View Answer on Stackoverflow
Solution 4 - C++RonaldBarzellView Answer on Stackoverflow
Solution 5 - C++Ciro Santilli Путлер Капут 六四事View Answer on Stackoverflow
Solution 6 - C++Francois BertrandView Answer on Stackoverflow