命名空间
变体
操作

std::format_error

来自 cppreference.com
< cpp‎ | utility‎ | format
 
 
实用程序库
语言支持
类型支持 (基本类型,RTTI)
库特性测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三方比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用程序
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
 
定义在头文件 <format>
class format_error;
(自 C++20 起)

定义了用于报告格式化库中错误的异常对象类型。

cpp/error/exceptioncpp/error/runtime errorstd-format error-inheritance.svg

继承图

内容

[编辑] 成员函数

(构造函数)
使用给定消息构造一个新的 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)
1) 使用 what_arg 作为解释性字符串构造异常对象。构造完成后,std::strcmp(what(), what_arg.c_str()) == 0.
2) 使用 what_arg 作为解释性字符串构造异常对象。构造完成后,std::strcmp(what(), what_arg) == 0.
3) 复制构造函数。如果 *thisother 都具有动态类型 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 的内容。如果 *thisother 都具有动态类型 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

[编辑] 参见