标签:也有 this col bsp private 允许 his 避免 operator
class Queue { private: Queue(const Queue & q) : qsize(0) {} // preemptive definition 伪私有方法 Queue & operator = (const Queue & q) { return *this; } // preemptive definition 伪私有方法 ... };
标签:也有 this col bsp private 允许 his 避免 operator
原文地址:https://www.cnblogs.com/suui90/p/13138009.html