最新回答 / 9点58
不一定, 你也可以定义在 protected/private 中, 但如果这样地话, 你就没办法实例化这个类了! 有的时候, 会要求禁止用户创建类的实例就会这么用的, 比如设计模式中有一个单件模式, 就是限制一个类只能有一个实例的:
class singleton {
private:
singleton() {}
~singleton() {}
public:
static singleton &get_instance(void)
{
static singleton _inst;
retu...
2016-06-26