effective c++ 条款26 postpone variable definition as long as possible时间:2022-07-21 04:36:27因为构造和析构函数有开销,所以也许前面定义了,还没用函数就退出了。 所以比较好的方法是用到了才定义。