构造函数和析构函数例子
作者:互联网
#include
#include
using namespace std;
/**
-
定义类:Student
-
数据成员:m_strName
-
无参构造函数:Student()
-
有参构造函数:Student(string _name)
-
拷贝构造函数:Student(const Student& stu)
-
析构函数:~Student()
-
数据成员函数:setName(string _name)、getName()
*/
class Student
{
public:
Student()
{};
Student(string _name)
{
m_strName=_name;
};
Student(const Student& stu);
~Student()
{};
void setName(string _name)
{
m_strName=_name;
};
string getName()
{
return m_strName;
};
string m_strName;
};
int main(void)
{
// 通过new方式实例化对象*stu
Student *stu =new Student();
// 更改对象的数据成员为“慕课网”
stu->setName(“慕课网”);
// 打印对象的数据成员
cout<getName()<<endl;
delete stu;
stu=NULL;
return 0;
}
标签:string,strName,name,stu,例子,Student,和析构,构造函数 来源: https://blog.csdn.net/weixin_43424867/article/details/95199842