Arce 发表于 2021-8-7 12:14:42

c++中的struct

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 }


文档来源:51CTO技术博客https://blog.51cto.com/u_2498536/3305565
页: [1]
查看完整版本: c++中的struct