无参和有参构造函数和拷贝构造函数基本语法

#include
#include
using namespace std;
class parson{
public:
	parson(){
		cout << "无参构造函数" << endl;
	}
	parson(int a){
		cout << "有参构造函数" << endl;
	}
	parson(const parson &p){
		cout << "拷贝构造函数" << endl;
	}
};
void test(){
	parson p;
	parson(10);
	parson p2(p);
}
int main(){
	test();
	system("pause");
	return 0;
}

你可能感兴趣的:(c++,算法,开发语言)