首页 > 代码库 > c++中的struct
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 }
c++中的struct
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。