类里可以提供多个函数, 外面可以给一个方法, 里面可以写多个函数.
我对C++ 刚学三个月不到, 所以都很清析,
这才知道外部提供一个方法, 里面可以写多个函数.
做了一个小测试, 所以随便写个1+1 的题目.
不过我喜欢在外面检验好了才能把这东西放到我的项目里, 不然我太怕......错误!!!
//程序作者:管宁
//站点:www.cndev-lab.com
//所有稿件均有版权,如要转载,请务必著名出处和作者
#include <windows.h>
#include <list>
#include <iostream.h>
#include <string.h>
class Student
{
public:
Student()//无参数构造函数
{
number = 1;
score = 100;
}
int fun1();
int fun2();
void show();
protected:
int number;
int score;
};
int Student::fun1()
{
score=1111;
cout<<"score"<<score<<endl;
return 0;
}
int Student::fun2()
{
number=2222;
cout<<"number"<<number<<endl;
return 0;
}
void Student::show()
{
this->fun1();
this->fun2();
cout<<number<<endl;
cout<<score<<endl;
}
void main()
{
Student a;
a.show();
}