摘要: 1: #include<iostream> 2: #include<string> 3: using namespace std; 4: class TEST { 5: public: 6: TEST(){ 7: cout<<"TEST()"<<endl; 8: } 9: TEST(string b){ 10: cout<<"TEST(string) "<<endl; 11: } 12: TEST(const TEST &t){ 13: ... 阅读全文
posted @ 2012-05-20 00:19 ForFreeDom 阅读(282) 评论(0) 推荐(0) 编辑