C++构造函数和析构函数
作者:互联网
#include <iostream>
#include <string>
using namespace std;
// 构造函数
//构造函数的分类和调用
// 按照参数分类 无参数构造和有参构造
// 按照类型分类 普通构造函数 和拷贝构造函数
class Person
{
public:
Person()
{
cout <<"person 构造函数"<<endl;
}
Person(int a)
{
cout <<"person 有参构造函数"<<endl;
}
Person(const Person &a)
{
cout <<"person 拷贝构造函数"<<endl;
}
~Person()
{
cout <<"person 析构函数"<<endl;
}
};
void test01()
{
// 括号法
// Person p;
// Person p1(1);
// Person p2(p1);
// 显示法
// Person p;
Person p1=Person(1);
Person p2=Person(p1);
// yinshi转换法
// Person p1=10;
// Person p2=p1;
}
int main()
{
// 创建圆
test01();
system("pause");
return 0;
}
标签:p2,p1,cout,C++,Person,include,和析构,构造函数 来源: https://blog.csdn.net/weixin_32759777/article/details/121085889