std::format_error
来自 cppreference.com
定义在头文件 <format> 中 |
||
class format_error; |
(自 C++20 起) | |
定义了用于报告格式化库中错误的异常对象类型。
继承图
内容 |
[编辑] 成员函数
(构造函数) |
使用给定消息构造一个新的 format_error 对象(公共成员函数) |
operator= |
替换 format_error 对象(公共成员函数) |
std::format_error::format_error
format_error( const std::string& what_arg ); |
(1) | |
format_error( const char* what_arg ); |
(2) | |
format_error( const format_error& other ) noexcept; |
(3) | |
3) 复制构造函数。如果 *this 和 other 都具有动态类型
std::format_error
,则在构造完成后,std::strcmp(what(), other.what()) == 0。复制构造函数不会抛出任何异常。参数
what_arg | - | 解释性字符串 |
other | - | 要复制的另一个异常对象 |
异常
1,2) 可能会抛出 std::bad_alloc.
注释
由于复制 std::format_error
不允许抛出异常,因此此消息通常在内部存储为一个单独分配的引用计数字符串。这也是为什么没有构造函数接受 std::string&&
的原因:它无论如何都必须复制内容。
派生标准异常类必须具有一个公开可访问的复制构造函数。只要通过 what()
获得的解释性字符串对于原始对象和复制对象相同,它就可以隐式定义。
std::format_error::operator=
format_error& operator=( const format_error& other ) noexcept; |
||
将内容分配给 other 的内容。如果 *this 和 other 都具有动态类型 std::format_error
,则在赋值完成后,std::strcmp(what(), other.what()) == 0。复制赋值运算符不会抛出任何异常。
参数
other | - | 要分配的另一个异常对象 |
返回值
*this
注释
派生标准异常类必须具有一个公开可访问的复制赋值运算符。只要通过 what()
获得的解释性字符串对于原始对象和复制对象相同,它就可以隐式定义。
从 std::runtime_error 继承
从 std::exception 继承
成员函数
[虚拟] |
销毁异常对象 ( std::exception 的虚拟公有成员函数) |
[虚拟] |
返回解释性字符串 ( std::exception 的虚拟公有成员函数) |
[编辑] 示例
运行此代码
#include <format> #include <print> #include <string_view> #include <utility> int main() { try { auto x13{37}; auto args{std::make_format_args(x13)}; std::ignore = std::vformat("{:()}", args); // throws } catch(const std::format_error& ex) { std::println("{}", ex.what()); } }
可能的输出
format error: failed to parse format-spec