摘要: 1class ITest 2{ 3public: 4virtual void Test() = 0; 5 6}; 7 8class CTest : public ITest 9{ 10 public: 11CTest(){ printf("constructor.n"); }; 12~CTest()... 阅读全文
posted @ 2014-05-29 20:52 依然老白兔 阅读(586) 评论(0) 推荐(0) 编辑