首頁 >後端開發 >C++ >如何在 C 中將 printf 與 std::string 一起使用?

如何在 C 中將 printf 與 std::string 一起使用?

DDD
DDD原創
2024-12-16 01:06:101001瀏覽

How Can I Use printf with a std::string in C  ?

printf 與 std::string

printf 是 C 函數,而 std::string 是 C 類。這就是您收到錯誤的原因。

要解決此問題,您可以使用 std::string 的 c_str() 方法來取得可傳遞給 printf 的 C 風格字串。例如:

#include <iostream>
#include <string>
#include <stdio.h>

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.c_str());
    cin.get();

    return 0;
}

這會輸出:

Come up and C++ me some time.
Follow this command: Press ENTER to quit program!

如果你不想使用c_str(),你也可以使用字串流類別來格式化你的輸出。例如:

#include <iostream>
#include <string>
#include <sstream>

int main()
{
    using namespace std;

    string myString = "Press ENTER to quit program!";
    cout << "Come up and C++ me some time." << endl;
    ostringstream oss;
    oss << "Follow this command: " << myString;
    printf("%s", oss.str().c_str());
    cin.get();

    return 0;
}

這將輸出與前面的範例相同的內容。

以上是如何在 C 中將 printf 與 std::string 一起使用?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn