首页 > 后端开发 > C++ > 如何在 C 中将 printf 与 std::string 一起使用?

如何在 C 中将 printf 与 std::string 一起使用?

DDD
发布: 2024-12-16 01:06:10
原创
999 人浏览过

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

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板