看不懂这错误,不知道怎么改~求施计
不知如何是好~
代码如下:
// ConsoleApplication2.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//
#include <iostream>
#include <stdlib.h>
#include <string.h>
using namespace std;
/****************************************************/
/* 数据的封装
定义一个Student类,含有如下信息:
1、姓名:name
2、性别 :gender
3、学分:(只读)score
4、学习:study */
/***************************************************/
class student
{
private:
string m_strName;
string m_strGender;
int m_iScore;
public:
void setName(string _name)
{
m_strName = _name;
}
string getName()
{
return m_strName;
}
void setGender(string _gender)
{
m_strGender = _gender;
}
string getGender()
{
return m_strGender;
}
int getScore()
{
return m_iScore;
}
void initScore()
{
m_iScore = 0;
}
void study(int _score)
{
m_iScore += _score;
}
};
int main(void)
{
student stu;
stu.initScore();
stu.setName("小志");
stu.setGender("女");
stu.study(10);
stu.study(10);
cout << stu.getName() << "\t性别:" << stu.getGender() << "\t学分:" << stu.getScore() << endl;
system("pause");
return 0;
}