本文主要是介绍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;
}
这篇关于C++构造函数和析构函数的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!