首頁 > 後端開發 > C++ > 為什麼 `printf` 會導致 `std::string` 出現意外行為,以及如何修復它?

為什麼 `printf` 會導致 `std::string` 出現意外行為,以及如何修復它?

DDD
發布: 2024-12-31 13:01:11
原創
688 人瀏覽過

Why Does `printf` Cause Unexpected Behavior with `std::string`, and How Can I Fix It?

理解printf 與std::string 的使用

儘管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::cout

由於std::string 支援運算子重載,因此可以使用std::cout:

std::cout << "Follow this command: " << myString;
登入後複製

提取C 風格字串

如果需要提取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中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板