标签:
代码:
1 #include <iostream> 2 #include <cstdio> 3 4 using namespace std; 5 6 //class A{ 7 struct A{ 8 public: 9 int i{5}; 10 void print(){ 11 cout<<i<<endl; 12 } 13 }; 14 //class B:A{ 15 struct B:A{ 16 public: 17 }; 18 19 int main(){ 20 21 B b; 22 b.print(); 23 24 return 0; 25 }
输出:
5
分析:
C++中struct默认继承方式为public,而class为private。
标签:
原文地址:http://www.cnblogs.com/hu983/p/5521237.html