C ++中的结构与类
在C++中,结构和类基本相同。但是有一些细微的差异。这些差异如下所示。
默认情况下,类成员是私有的,但是结构的成员是公共的。让我们看一下这两个代码,以了解不同之处。
范例程式码
#include <iostream>
using namespace std;
class my_class {
int x = 10;
};
int main() {
my_class my_ob;
cout << my_ob.x;
}输出结果
This program will not be compiled. It will generate compile time error for the private data member.
范例程式码
#include <iostream>
using namespace std;
struct my_struct{
int x = 10;
};
int main() {
my_struct my_ob;
cout << my_ob.x;
}输出结果
10
当我们从类或结构派生结构时,该基类的默认访问说明是公共的,但是当我们派生一个类时,默认访问说明是私有的。
范例程式码
#include <iostream>
using namespace std;
class my_base_class {
public:
int x = 10;
};
class my_derived_class : my_base_class{
};
int main() {
my_derived_class d;
cout << d.x;
}输出结果
This program will not be compiled. It will generate compile time error that the variable x of the base class is inaccessible
范例程式码
#include <iostream>
using namespace std;
class my_base_class {
public:
int x = 10;
};
struct my_derived_struct : my_base_class{
};
int main() {
my_derived_struct d;
cout << d.x;
}输出结果
10
热门推荐
3 祝福语简短的微信
10 幼儿祝福语大全简短贺卡
11 感谢教官文案祝福语简短
12 鼠年同事祝福语简短创意
13 元旦祝福语 简短独特群发
14 妈咪跟我生日祝福语简短
15 给儿子新婚祝福语简短
16 伴娘祝福语长文案简短
17 恭喜高考完祝福语简短
18 生日祝福语送老公简短