摘要: #include<iostream> class SharedCount{ public: SharedCount():count_(1){} void AddCount(){ ++count_; } long ReduceCount(){ return --count_; } long GetCo 阅读全文
posted @ 2022-03-20 17:00 Kayden_Cheung 阅读(192) 评论(0) 推荐(0)
//目录