时间:2021-04-30 10:12:25 | 栏目:C代码 | 点击:次
最近在学习C++,了解到,C++中对C做了扩充,使用结构体时也可以像类一样,规定私有数据类型和公有数据类型,同时也可以在struct中实现方法设置等等。
但为了保持面对对象的特性,建议还是使用class来描述一个类。
案例如下:
#include <iostream> #include <ctime> using namespace std ; typedef struct student { private : int a , b , c ; public : void set(int a , int b , int c) { this->a = a ; this->b = b ; this->c = c ; } void prit() { cout << a << endl << b << endl << c << endl ; } }stu; stu st1 ; int main(void) { st1.set(1,2,3); st1.prit(); return 0 ; }
运行结果:
1
2
3
总结