C++ 概念: Destructible

来自cppreference.com
< cpp‎ | concept

指定该类型的一个实例是默认构造.
原文:
Specifies that an instance of the type can be default constructed.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 要求

该类型必须实现以下功能:1
原文:
The type must implement the following functions:
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

Type::~Type

Type::~Type() noexcept;

析构函数: The destructor frees all resources owned by the object and it does not throw any exception.

[编辑] 另请参阅

检查对象是否声明了析构函数
(类模板) [edit]