为了账号安全,请及时绑定邮箱和手机立即绑定
Student() {
cout << "Student()" << endl;
}
explicit Student(string name) {
m_strName = name;
cout << "Student(string name)" << endl;
}
Student(const Student& stu) {
cout << "Student(const Student& stu)" << endl;
}
int main(void)
{
Student *stu = new Student("张晨飞");
Student *stu1 = new Student("张晨飞");
Student *stu2(stu1);
stu->setName("慕课网");
cout<<"学生名字:"<<stu->getName()<<endl;
cout<<"学生名字:"<<stu2->getName()<<endl;
delete stu2,stu,stu1;
stu=stu1=stu2=NULL;
return 0;
}
必须得把慕课网放到第一个输出
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;}
private:
string m_strName;
};
/* copyright */
#include <iostream>
#include <string>
using std::cout;
using std::endl;
using std::string;
class Student {
public:
void setName(string _name) {
m_strName = _name;
}
string getName() {
return m_strName;
}
private:
string m_strName;
};
#include <iostream>
#include <string>
using std::cout;
using std::endl;

namespace Student {
public:
int m_strName;
int m_iAge;
};
int main(void) {
Student stu;
stu.m_strName = "imooc";
stu.m_iAge = 2;
cout << stu.m_strName << " " << stu.m_iAge << endl;
return 0;
}

最新回答 / 慕粉1213598641
由于是用指针p申请的堆内存,所以在调用成员时该用p[n]->
把 system("pause")去掉就看到了
讲的很好(✪▽✪)
这个正确的判定对比也是坑
老师讲的真好,比某些培训机构的老师好多了
快来看剧透啊
讲的很好!!
public:
void setName(string _name)
{m_strName = _name;}
string getName()
{return m_strName;}
private:
string m_strName;
};

int main()
{ Student *str = new Student();
str->setName("慕课网");
cout << str->getName() <<endl;
delete str;
str = NULL;
return 0;}

最新回答 / Mirror丨镜子
堆中对象调用了setName函数
课程须知
本课程是C++初级课程 需要熟练掌握C++语言基础语法
老师告诉你能学到什么?
1、类的定义与对象实例化 2、string类型及属性封装 3、类外定义 4、构造函数与初始化列表 5、析构函数

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消