标签:blog io os sp on div log bs as
#include <iostream>
#include <stdio.h>
using namespace std;
class A
{
public:
A()
{
puts("this is A!");
}
};
class B : A
{
public:
B()
{
puts("this is B!");
}
};
class C : B
{
public:
C()
{
puts("this is C!");
}
};
int main()
{
//A a;
C c;
return 0;
}
this is A! this is B! this is C! Process returned 0 (0x0) execution time : 0.007 s Press any key to continue.
标签:blog io os sp on div log bs as
原文地址:http://www.cnblogs.com/juandx/p/4122316.html