字符串流问题

发布于 2025-01-07 04:40:08 字数 461 浏览 0 评论 0原文

当我使用 ostringstream 时,我得到的唯一值是:COM1 我有一个发送数据的应用程序。 我使用的代码为:

std::ostringstream values;
values << someStruct.someValues;
...
...
std::string data
data << values.str();

但是当我运行它时,我得到的只是一个输出,显示 COM1。我的应用程序是一个 DLL 文件。

但是当我执行下面的方法时,我得到了正确的值

char *data;
char values[20];
sprintf(values, "%d",someStruct.someValue);
strcat(data,values);

但我不想使用上面的方法,因为我有很多变量需要从程序中获取。所以请有人帮忙。

when I use ostringstream, the only value that i get is : COM1
I have an application, which sends data.
I am using the code as :

std::ostringstream values;
values << someStruct.someValues;
...
...
std::string data
data << values.str();

But when I run this, all I get is an output saying COM1. My application is a DLL file.

But when I do this method below, I get the correct values

char *data;
char values[20];
sprintf(values, "%d",someStruct.someValue);
strcat(data,values);

But I don't want to use the above method as I have many variables that I need to fetch from the program. So someone please help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

秉烛思 2025-01-14 04:40:08
std::string data;
data << values.str();

std::string 不是。它不能采用operator<<。我很惊讶这段代码甚至可以编译,但几乎可以肯定它没有做任何有用的事情。你想要的是这样的:

std::string data = values.str();
std::string data;
data << values.str();

std::string is not a stream. It can't take operator<<. I'm surprised this code even compiles, but it almost certainly doesn't do something useful. What you want is this:

std::string data = values.str();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文