摘要: 1、临时对象 比如: A a; a=A(1); //A(1)就是个临时对象会自动的销毁应用之一 防函数 template <typename T> class print { public: void operator()(const T& a) { cout<<a<<endl; } }; int 阅读全文
posted @ 2021-05-11 20:21 Z9Y1J5 阅读(50) 评论(0) 推荐(0) 编辑