命名空间
变体
操作

std::runtime_format

来自 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> 中定义
/*runtime-format-string*/<char> runtime_format( std::string_view fmt ) noexcept;
(1) (自 C++26 起)
/*runtime-format-string*/<wchar_t> runtime_format( std::wstring_view fmt ) noexcept;
(2) (自 C++26 起)

返回一个对象,该对象存储一个运行时格式字符串,该字符串可直接在面向用户的格式化函数中使用,并且可以隐式转换为 std::basic_format_string

内容

[编辑] 参数

fmt - 字符串视图

[编辑] 返回值

一个持有运行时格式字符串的对象,该字符串是仅用于说明的类型

类模板 runtime-format-string <CharT>

template< class CharT >
struct /*runtime-format-string*/;
(仅用于说明*)

成员对象

返回的对象包含一个仅用于说明的非静态数据成员 str,其类型为 std::basic_string_view<CharT>

构造函数和赋值

/*runtime-format-string*/( std::basic_string_view<CharT> s ) noexcept;
(1)
/*runtime-format-string*/( const /*runtime-format-string*/& ) = delete;
(2)
/*runtime-format-string*/& operator=( const /*runtime-format-string*/& ) = delete;
(3)
1)s 初始化 str
2) 复制构造函数被显式删除。该类型既不可复制也不可移动。
3) 赋值运算符被显式删除。

[编辑] 注意事项

由于 runtime_format 的返回类型既不可复制也不可移动,因此尝试将 runtime_fmt 作为 glvalue 传递会阻止 std::basic_format_string 的构造,这会导致程序不符合要求。要使用 runtime_format 构造 std::basic_format_stringruntime_format 的返回值应直接作为 prvalue 传递给 std::basic_format_string,其中复制省略是保证的。

auto runtime_fmt = std::runtime_format("{}");
 
auto s0 = std::format(runtime_fmt, 1); // error
auto s1 = std::format(std::move(runtime_fmt), 1); // still error
auto s2 = std::format(std::runtime_format("{}"), 1); // ok
功能测试 Std 功能
__cpp_lib_format 202311L (C++26) 运行时格式字符串

[编辑] 示例

#include <format>
#include <print>
#include <string>
#include <string_view>
 
int main()
{
    std::print("Hello {}!\n", "world");
 
    std::string fmt;
    for (int i{}; i != 3; ++i)
    {
        fmt += "{} "; // constructs the formatting string
        std::print("{} : ", fmt);
        std::println(std::runtime_format(fmt), "alpha", 'Z', 3.14, "unused");
    }
}

输出

Hello world!
{}  : alpha
{} {}  : alpha Z
{} {} {}  : alpha Z 3.14

[编辑] 参见

(C++20)
在新的字符串中存储参数的格式化表示
(函数模板) [编辑]
(C++20)
使用类型擦除参数表示的 std::format 的非模板变体
(函数) [编辑]
在构造时执行编译时格式字符串检查的类模板
(类模板) [编辑]