发布于 ,更新于 

类与结构体

类 (class) 与 结构体 (struct)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <iostream>
using namespace std;
class Person {
private: // Person类私有 只能在 Person 这个类里面调用
int age, height;
double money;
public:
string name;
void say() {
cout << "I'm " << name << endl;
}
int get_age() {
return age; // Person 类中可以调用由 Person 类私有的量
}
void add_money(int a){
money += a;
}
private: // private/public 可以有多个
string books[1000];
}; // 类定义结束要加分号

int main(){
Person pinghigh();
Person persons[10]; // 可以定义一个 Person 类的数组
pinghigh.name = "Tibrella"; // name 是公有变量,外部可以访问
// pinghigh.age = 15; //!错误, age 是私有变量,外部不可访问
pinghigh.add_money(12345);
pinghigh.say();
cout << pinghigh.get_age() << endl;
return 0;
}

输出:

1
2
I'm Tibrella
14

class 与 struct 的异同

唯一一点不同是 class 中的量默认为 private , struct 中的量默认为 public
其他完全相同