c++中的struct

c++中的struct不在是c中的struct,不仅仅是一个多个数据类型的结构体了。c++中的struct可以具有成员函数(c语言中是不可以的),c++ struct还可以继承class等等。同时c++中的struct还兼容c的struct。下面这篇文章写得很详细

我也贴一段小代码吧

 1 #include <iostream>
 2 using namespace std;
 3 
 4 struct test_struct{
 5     int id;
 6     int age;
 7 
 8     void fun(){
 9         cout<<"id = "<<id<<"age = "<<age<<endl;//这里定义了成员函数
10     }
11 };
12 
13 int main(){
14     struct test_struct var1 = {1, 24};
15     printf("%d %d\n", var1.id, var1.age);
16 
17     return 0;
18 }

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。