类的基本操作:
#include<iostream>
using namespace std;
//类的定义,在主函数之前
class Student { //类名第一个字符大写
private: //一般常数为私有变量(不一定)。外界不能访问与修改,只有类中的公有函数才能对数据进行修改
string name;
string sex;
int garde;
public: //一般函数为公有(不一定)。外界能够通过 . 直接访问,充当了外界与类的接口
//下面在类中对成员函数进行声明
void show();
void record(string a, string b, int c) { //内联函数(在类中定义的函数)
name = a;
sex = b;
garde = c;
}
protected:
string age; //保护成员
};
void Student::show() { //在类外定义类成员函数:<类型><类名>::<函数名><参数表>。 ::为作用域符号
cout << name <<" "<< sex << " " << garde << endl;
}
int main() {
Student student1; //声明一个对象student1
student1.record("pht", "man", 100);//调用成员函数
student1.show();
return 0;
}