c++ 单继承派生类构造函数

#include

using namespace std;
class B{
public:
	B();//构造函数 
	B(int i);//带一个参数的构造函数 
	~B();//析构函数 
	void printf()const;//不改变对象状态 定义成const函数 
private:
	int b; 
};
B::B(){
b=0;
cout<<"B's default constructor called"<

你可能感兴趣的:(c++ 单继承派生类构造函数)