命名空间
变体
操作

std::basic_format_string, std::format_string, std::wformat_string

来自 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>
template< class CharT, class... Args >
struct basic_format_string;
(1) (自 C++20 起)
template< class... Args >

using format_string =

    basic_format_string<char, std::type_identity_t<Args>...>;
(2) (自 C++20 起)
template< class... Args >

using wformat_string =

    basic_format_string<wchar_t, std::type_identity_t<Args>...>;
(3) (自 C++20 起)

类模板 std::basic_format_string 包装一个 std::basic_string_view,该视图将被格式化函数使用。

std::basic_format_string 的构造函数执行编译时格式字符串检查,除非构造函数参数由 std::runtime_format 返回(自 C++26 起).

内容

[编辑] 成员函数

(构造函数)
构造一个 basic_format_string,如果参数不是格式字符串,则会引发编译错误
(公有成员函数)
get
返回包装的字符串
(公有成员函数)

std::basic_format_string::basic_format_string

template< class T >
consteval basic_format_string( const T& s );
(1)
basic_format_string( /* runtime-format-string */<CharT> s ) noexcept;
(2) (自 C++26 起)
1) 构造一个 basic_format_string 对象,它存储字符串 s 的视图。如果参数不是编译时常量,或者如果它不能被解析为格式化参数类型 Args 的格式字符串,则构造是错误的。
此重载仅在 const T& 符合 std::convertible_to<std::basic_string_view<CharT>> 时参与重载解析。
2) 构造一个 basic_format_string 对象,它存储由 std::runtime_format 返回的字符串 s 的视图。它在构造时不执行格式字符串检查。

参数

s - 表示格式字符串的对象。格式字符串由
  • 普通字符(除了 {}),它们被原样复制到输出中,
  • 转义序列 {{}},它们在输出中分别被替换为 {},以及
  • 替换字段。

每个替换字段具有以下格式

{ arg-id (可选) } (1)
{ arg-id (可选) : format-spec } (2)
1) 没有格式规范的替换字段
2) 有格式规范的替换字段
arg-id - 指定 args 中要用于格式化的参数的索引;如果省略,则按顺序使用参数。

格式字符串中的 arg-id s 必须全部存在或全部省略。混合手动和自动索引是错误的。

format-spec - std::formatter 特化针对相应参数定义的格式规范。不能以 } 开头。

(自 C++23 起)
(自 C++26 起)
  • 对于其他可格式化类型,格式规范由用户定义的 formatter 特化确定。

std::basic_format_string::get

constexpr std::basic_string_view<CharT> get() const noexcept;

返回存储的字符串视图。

[编辑] 注释

别名模板 format_stringwformat_string 使用 std::type_identity_t 来抑制模板参数推断。通常,当它们作为函数参数出现时,它们的模板参数是从其他函数参数推断出来的。

template<class... Args>
std::string format(std::format_string<Args...> fmt, Args&&... args);
 
auto s = format("{} {}", 1.0, 2);
// Calls format<double, int>. Args are deduced from 1.0, 2
// Due to the use of type_identity_t in format_string, template argument deduction
// does not consider the type of the format string.

[编辑] 示例

[编辑] 缺陷报告

以下行为更改缺陷报告被追溯应用到先前发布的 C++ 标准。

DR 应用于 已发布的行为 正确行为
P2508R1 C++20 此功能没有用户可见的名称 名称 basic_format_string 被公开