C++ 概念: Destructible
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
指定该类型的一个实例是默认构造.
原文:
Specifies that an instance of the type can be default constructed.
[编辑] 要求
该类型必须实现以下功能:1
原文:
The type must implement the following functions:
Type::~Type
Type::~Type() noexcept; |
||
析构函数: The destructor frees all resources owned by the object and it does not throw any exception.
[编辑] 另请参阅
(C++11) (C++11) (C++11) |
检查对象是否声明了析构函数 (类模板) |