首页 > 编程 > C++ > 正文

C++中对C语言结构体用法的扩充

2020-05-23 13:23:54
字体:
来源:转载
供稿:网友

最近在学习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

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对VEVB武林网的支持。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表