摘要:
#include #include class destructor_test{ public: ~destructor_test(){ std::cout << "~destructor_test" << std::endl; } }; class test{ private: destructor_test destructor_test_instance; };... 阅读全文
摘要:
一旦类初始化,那么对象必然会被创建,指针则可以在需要时候再去初始化所指向。 阅读全文
摘要:
如果可以只出现在.cc中,就不出现在.h中 阅读全文
摘要:
类图和序列图,对理清思路和代码流程,效果极佳 阅读全文
摘要:
危险的征兆啊 阅读全文