Why is a class allowed to have a static member of itself, but not a non-static member?(为什么一个类可以有自己的静态成员,而不是非静态成员?)
问题描述
class base {
public:
base a;
};
它会导致编译错误.
class base {
public:
static base a;
};
而此代码不会给出编译错误
whereas this code does not give compilation error
推荐答案
因为 static 类成员没有存储在类实例中,这就是 static 可以工作的原因.
Because static class members are not stored in the class instance, that's why a static would work.
将一个对象存储在另一个相同类型的对象中会破坏运行时 - 无限大,对吧?
Storing an object inside another object of the same type would break the runtime - infinite size, right?
sizeof 会返回什么?编译器需要知道对象的大小,但是因为它包含了同类型的对象,所以没有意义.
What would sizeof return? The size of the object needs to be known by the compiler, but since it contains an object of the same type, it doesn't make sense.
这篇关于为什么一个类可以有自己的静态成员,而不是非静态成员?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么一个类可以有自己的静态成员,而不是非
基础教程推荐
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- CString 到 char* 2021-01-01
- 初始化列表*参数*评估顺序 2021-01-01
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
