std::future_category
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <future> 中定义
|
||
const std::error_category& future_category(); |
(C++11 起) | |
。获得的静态误差的错误相关的期货和承诺类对象的引用。需要重写虚函数error_category::name()返回一个指针,指向的字符串"future"的对象。它被用来确定提供的错误代码在例外的类型std::future_error.
原文:
Obtains a reference to the static error category object for the errors related to futures and promises. The object is required to override the virtual function error_category::name() to return a pointer to the string "future". It is used to identify error codes provided in the exceptions of type std::future_error.
目录 |
[编辑] 。参数。
。 (无)。
===。 返回值。===
。静态对象的引用未指定的运行时类型,来自std::error_category.
原文:
a reference to the static object of unspecified runtime type, derived from std::error_category.
[编辑] 。例外。
[编辑] 。为例。
本章尚未完成 原因:暂无示例 |
[编辑] 。另请参阅。
(C++11) |
识别未来的错误代码 (枚举) |
(C++11) |
报告一个错误相关的期货或承诺 原文: reports an error related to futures or promises (类) |
(C++11) |
错误类型的基类 (类) |