命名空间
变体
操作

std::vformat

来自 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>
(1) (自 C++20 起)
(2) (自 C++20 起)
std::string vformat( const std::locale& loc,
                     std::string_view fmt, std::format_args args );
(3) (自 C++20 起)
std::wstring vformat( const std::locale& loc,
                      std::wstring_view fmt, std::wformat_args args );
(4) (自 C++20 起)

根据格式字符串 fmt 格式化 args 持有的格式参数,并将结果作为字符串返回。如果存在,则 loc 用于特定于区域设置的格式化。

内容

[编辑] 参数

fmt - 表示格式字符串的对象。格式字符串由以下组成:
  • 普通字符({} 除外),这些字符将原样复制到输出中,
  • 转义序列 {{}},它们在输出中分别替换为 {},以及
  • 替换字段。

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

{ 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 特化确定。
args - 要格式化的参数
loc - 用于特定于区域设置的格式化的 std::locale

[编辑] 返回值

包含格式化结果的字符串对象。

[编辑] 异常

如果 fmt 不是针对提供参数的有效格式字符串,则抛出 std::format_error,或在分配失败时抛出 std::bad_alloc。还会传播格式化程序或迭代器操作抛出的任何异常。

[编辑] 示例

#include <format>
#include <iostream>
 
template<typename... Args>
inline void println(const std::format_string<Args...> fmt, Args&&... args)
{
    std::cout << std::vformat(fmt.get(), std::make_format_args(args...)) << '\n';
}
 
int main()
{
    println("{}{} {}{}", "Hello", ',', "C++", -1 + 2 * 3 * 4);
}

输出

Hello, C++23

[编辑] 另请参阅