#include <iostream> using namespace std; //一.C++中struct和class的区别 //唯一区别:默认访问权限不同 //struct:默认权限为公共 //class:默认权限为私有 //代码演示: //定义结构体 struct C1{ int a; }; //定义类 class C2{ int b; }; int main(int argc, char** argv) { C1 c1; c1.a;//可以访问 C2 c2; //c2.b;//不可以访问 return 0; }