嘗試將printf 與std::string 一起使用時,您可能會遇到意外行為,例如列印看似隨機的字串而不是預期的std::string 值。
發生這種情況是因為 printf 是對 C 風格字串進行操作的 C 函數,而 std::string 是管理動態分配記憶體的 C 物件。要修正這個問題,有幾種方法:
使用 std::cout:
最直接的解決方案是使用std::cout,它支援運算子重載std::string,允許您直接列印它:
std::cout << "Follow this command: " << myString;
使用c_str():
如果需要從std ::string 中提取以null 結尾的C 風格字串,可以使用c_str()方法:
printf("Follow this command: %s", myString.c_str());
使用 std::format:
對於現代 C(C 20 及更高版本),您可以利用std::format,它提供了一種類型安全且通用的方式來格式化字串:
std::cout << "Follow this command: " << std::format("{}", myString);
使用可變參數模板:
如果您需要為了更好地控制輸出格式,您可以考慮使用可變參數範本。但是,標準庫中沒有類似於 printf 的使用可變參數模板的內建函數。
使用Boost.Format:
Boost 提供了一個僅標頭的函式庫稱為Boost.Format,它提供了另一個使用可變參數模板執行類似printf 的格式化的方法。
以上是如何使用 printf 正確列印 std::strings?的詳細內容。更多資訊請關注PHP中文網其他相關文章!