C++ 伪私有方法
2021-05-12 17:30
阅读:550
标签:也有 this col bsp private 允许 his 避免 operator C++ 伪私有方法 标签:也有 this col bsp private 允许 his 避免 operator 原文地址:https://www.cnblogs.com/suui90/p/13138009.html
class Queue
{
private:
Queue(const Queue & q) : qsize(0) {} // preemptive definition 伪私有方法
Queue & operator = (const Queue & q) { return *this; } // preemptive definition 伪私有方法
...
};
将方法声明为伪私有方法的作用:
评论
亲,登录后才可以留言!