摘要: #include using namespace std; class Test { public: Test():x(0), y(0) { cnt++; } int x; int y; void print() const; static int cnt; static void print_s(); ... 阅读全文