simple base and derived class example

Bjarne Stroustrup “Programming Principles and Practice Using C++”
Chapter 14 Drill 2
Using std_lib_facilities.h by Bjarne Stroustrup.

[code language=”cpp”]
// Philipp Siedler
// Bjarne Stroustrup’s PP
// Chapter 14 Drill 2

#include "std_lib_facilities.h"
using namespace std;

class B1
{
public:
virtual void vf() { cout << "B1::vf" << endl; }
void f() { cout << "B1::f" << endl; }
};

class D1 : public B1
{
public:
void vf() { cout << "D1::vf" << endl; }
};

int main()
try
{
D1 d1;
d1.f();
d1.vf();

keep_window_open();
}
catch (exception& e) {
cout << e.what() << endl;
return 1;
}
catch (…) {
cout << "Exiting" << endl;
return 2;
}
[/code]

Output:
B1::f
D1::vf
Please enter a character to exit

Newsletter Updates

Enter your email address below to subscribe to our newsletter

Leave a Reply

Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124