儘管std::string 是std 命名空間的成員,但嘗試將其與printf 一起使用會導致意外的結果行為,如以下程式碼片段所示:
#include <iostream> #include <string> int main() { using namespace std; string myString = "Press ENTER to quit program!"; cout << "Come up and C++ me some time." << endl; printf("Follow this command: %s", myString); cin.get(); return 0; }
出現此問題是因為printf不是類型安全的並且依賴C 風格的字串。要解決此問題,有幾種方法可用:
由於std::string 支援運算子重載,因此可以使用std::cout:
std::cout << "Follow this command: " << myString;
如果需要提取C 風格字串,則c_str()方法可用於取得以 null 結尾的 const char *:
printf("Follow this command: %s", myString.c_str());
或者,可變參數範本可以提供 printf 的類型安全替代方案。可以在此處找到範例實作:https://stackoverflow.com/a/15014001。 Boost 提供了與 boost::format 類似的功能。
C 23 更新
C 23 引入了std::print,它結合了兩種方法的優點,允許使用std::format:
#include <print> std::print("Follow this command: {}", myString);
以上是為什麼 `printf` 會導致 `std::string` 出現意外行為,以及如何修復它?的詳細內容。更多資訊請關注PHP中文網其他相關文章!