在C++中,没有内置的format函数,但可以使用其他库或自己实现类似的功能。以下是一些常见的方式:
#include <iostream>
#include <sstream>
int main() {
int num = 10;
std::string str = "Hello";
std::stringstream ss;
ss << str << " " << num;
std::string result = ss.str();
std::cout << result << std::endl; // 输出:Hello 10
return 0;
}
boost::format
库:Boost库提供了一个format函数,可以以类似于Python中的格式化字符串的方式来格式化输出。#include <iostream>
#include <boost/format.hpp>
int main() {
int num = 10;
std::string str = "Hello";
std::string result = boost::str(boost::format("%1% %2%") % str % num);
std::cout << result << std::endl; // 输出:Hello 10
return 0;
}
#include <iostream>
#include <string>
#include <sstream>
template<typename... Args>
std::string format(const std::string& fmt, Args... args) {
std::ostringstream oss;
int dummy[] = {0, ((void)(oss << args), 0)...};
(void)dummy; // 防止编译器警告“未使用的变量”
return oss.str();
}
int main() {
int num = 10;
std::string str = "Hello";
std::string result = format("%s %d", str.c_str(), num);
std::cout << result << std::endl; // 输出:Hello 10
return 0;
}
这些方法都可以用于实现类似于格式化输出的功能,具体使用哪种方法取决于个人偏好和项目需求。