摘要:
先看这样一段代码class test { public: test(int i){ m_i=i;} test(){} void hello() { printf("hello\n"); } private: int m_i; }; int main() { test *p=new test(); p->hello(); p=NULL; p->hello(); ... 阅读全文
posted @ 2010-05-14 15:08
宇晨
阅读(821)
评论(0)
推荐(0)
浙公网安备 33010602011771号