评论

收藏

[C++] c++中的struct

编程语言 编程语言 发布于:2021-08-07 12:14 | 阅读数:341 | 评论:0

c++中的struct不在是c中的struct,不仅仅是一个多个数据类型的结构体了。c++中的struct可以具有成员函数(c语言中是不可以的),c++ struct还可以继承class等等。同时c++中的struct还兼容c的struct。下面这篇文章写得很详细
C++中struct和class的区别
我也贴一段小代码吧
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 }
DSC0000.png



关注下面的标签,发现更多相似文章