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中文网其他相关文章!