假设我有一个 T 类
- T 没有虚函数。
- T 个实例没有状态。
- T 具有自身的静态成员实例。
- T 本身没有其他状态。
C++ 静态初始化惨败会毁了我的程序吗?我不这么认为,因为即使其中一个静态实例在使用前没有被初始化,那也不重要,因为 T 对象是无状态的。
我有兴趣为类似枚举的类这样做:
// Switch.h
class Switch {
public:
static Switch const ON;
static Switch const OFF;
bool operator== (Switch const &s) const;
bool operator!= (Switch const &s) const;
private:
Switch () {}
Switch (Switch const &); // no implementation
Switch & operator= (Switch const &); // no implementation
};
// Switch.cpp
Switch const Switch::ON;
Switch const Switch::OFF;
bool Switch::operator== (Switch const &s) const {
return this == &s;
}
bool Switch::operator!= (Switch const &s) const {
return this != &s;
}