gpt4 book ai didi

c++ - 将字符串与 sprintf() 函数一起使用时出现问题

转载 作者:行者123 更新时间:2023-11-28 02:36:42 27 4
gpt4 key购买 nike

我希望这将是一个非常基本的问题,这可能是由于我对很多 C++ Win32 API 实用程序缺乏了解所致。

无论如何,我在使用 sprintf() 函数时遇到了一些问题。我用这样的字符串使用它没有问题:

//memory is a void pointer that maps a file to shared memory
sprintf((char *)memory, "Shared memory message"); //Write to shared memory

但是当我尝试使用 string 变量时它不起作用....

sprintf((char *)memory, str_var); //Write to shared memory

我收到一条错误消息:不存在从“std::string”到“const char *”的合适转换函数。我什至无法通过类型转换来解决这个问题,就像我对 memory 所做的那样。

这看起来很不一致。我哪里做错了,我该如何给它一个它会接受的值?

最佳答案

如果你需要sprintf,你需要传递一个const char*:

例如

sprintf((char *)memory, str_var.c_str()); 

关于c++ - 将字符串与 sprintf() 函数一起使用时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27195419/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com