在C++中,沒有內(nèi)置的format函數(shù),但可以使用其他庫(kù)或自己實(shí)現(xiàn)類似的功能。以下是一些常見的方式:
#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
庫(kù):Boost庫(kù)提供了一個(gè)format函數(shù),可以以類似于Python中的格式化字符串的方式來(lái)格式化輸出。#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;
}
這些方法都可以用于實(shí)現(xiàn)類似于格式化輸出的功能,具體使用哪種方法取決于個(gè)人偏好和項(xiàng)目需求。