本文介绍了什么是C ++中的非平凡析构函数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在阅读,
,我有一个类,
class C {
public:
~C(); // not explicitly declared.
};
如果 C ::〜C()
推荐答案
你会得到你的话混在一起。您的示例确实声明了一个显式析构函数。
You are getting your words mixed up. Your example does indeed declare an explicit destructor. You just forget to define it, too, so you'll get a linker error.
这个规则非常简单:你的类有明确的析构函数?如果是,你是不平凡的。如果不是,则检查每个非静态成员对象;如果任何 是不重要的,那么你是不平凡的。
The rule is very straight-forward: Does your class have an explicit destructor? If yes, you're non-trivial. If no, check each non-static member object; if any of them are non-trivial, then you're non-trivial.
这篇关于什么是C ++中的非平凡析构函数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!