摘要:
这个代码展示了private继承和模版的一个妙用: 1 #include <iostream> 2 #include <memory> 3 4 template<typename T> 5 class Counter { 6 public: 7 Counter() { count++; } 8 Counter(const Counter&) { count++; } 9 ~Counter() { --count; }10 public:11 std::size_t howMany(void) { return count; }12 private:1 阅读全文