在C++.Programming.Language.The.4th.Edition (http://download.csdn.net/detail/salmonrun/5831855) 中, Bjarne说(44.2.3):
Generation of the copy constructor and the copy assignment is deprecated for a class with a destructor
如果显示定义了 destructor, 那么 copy constructor 和 copy assignment 就不会被生成, 和标记成 delete 是一样的. 查了下标准, 也有这样的说法: