Virtual vs non-virtual member functions

suggest change

With virtual member functions:

#include <iostream>

struct X {
    virtual void f() { std::cout << "X::f()\n"; }
};

struct Y : X {

// Specifying virtual again here is optional // because it can be inferred from X::f(). virtual void f() { std::cout << “Y::f()\n”; }

};

void call(X& a) {
    a.f();
}

int main() {

X x; Y y; call(x); // outputs “X::f()” call(y); // outputs “Y::f()”

}

Without virtual member functions:

#include <iostream>

struct X {
   void f() { std::cout << "X::f()\n"; }
};

struct Y : X {
   void f() { std::cout << "Y::f()\n"; }
};

void call(X& a) {
    a.f();
}

int main() {

X x; Y y; call(x); // outputs “X::f()” call(y); // outputs “X::f()”

}

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Virtual member functions:
* Syntax
* Virtual vs non-virtual member functions

Table Of Contents
8 Arrays
11 Loops
39 Streams
51 Unions
56 Lambdas
60 SFINAE
62 RAII
67 Sorting
70 Virtual member functions
84 RTTI
87 Scopes
104 Profiling
107 Recursion
117 Iteration
125 Alignment
134 Semaphore
136 Debugging
139 Mutexes
142 decltype