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中文網其他相關文章!