在C++20中,可以使用std::format函数来格式化字符串。例如:
#include#include int main() { std::string name = "Alice"; int age = 30; std::string formattedString = std::format("My name is {} and I am {} years old.", name, age); std::cout << formattedString << std::endl; return 0; }
这将输出:
My name is Alice and I am 30 years old.
请注意,要使用std::format函数,您需要在编译时使用支持C++20的编译器,并启用C++20标准。