为了账号安全,请及时绑定邮箱和手机立即绑定

老是出错,帮忙看看

#include <iostream>
#include <stdlib.h>
#include <string>
using namespace std;

class Student{
public:
	void setName(string pp){
	m_strName = pp;
	}
	string getName(){
	return m_strName;
	}

private:
	string m_strName;
}
int main(){

	Student *str = new Student();
	str->setName("hanshuxin");
	str->getName();

	cout << str->getName() <<endl;

	delete str;
	str=NULL;
	 system("pause");

}


正在回答

1 回答

定义类的大括号后面要加分号,也就是class Student { } ;

1 回复 有任何疑惑可以回复我~
#1

拥梦 提问者

非常感谢!
2016-07-20 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
C++远征之封装篇(上)
  • 参与学习       103410    人
  • 解答问题       701    个

封装--面向对象的基石,本教程力求帮助小伙伴们即学即会

进入课程

老是出错,帮忙看看

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信