06 2024 档案

摘要:class GThread { public: GThread(); virtual ~GThread(); public: bool IsExit(); public: virtual bool Start(); virtual void Stop(); protected: virtual vo 阅读全文
posted @ 2024-06-14 17:02 耀耀爱学习 阅读(37) 评论(0) 推荐(0)
摘要:一、运算符重载 namespace CalcRect { struct Rect { Rect(int posX = 0, int posY = 0, int w = 0, int h = 0) { x = posX; y = posY; width = w; height = h; } void 阅读全文
posted @ 2024-06-05 12:06 耀耀爱学习 阅读(51) 评论(0) 推荐(0)