如何在Linux中使用POSIX API通过消息队列发送整数?

发布于 2024-10-21 04:44:28 字数 123 浏览 3 评论 0原文

我尝试通过消息队列发送整数,但函数 mq_send(mq, &val , sizeof(val), 0);仅适用于 char 类型指针,因此有什么方法可以使用另一个函数或相同函数将整数发送到队列。

问候...

I try to send integer by msg queue but the function mq_send(mq, &val , sizeof(val), 0); is working for only char type pointer so is there any way to send integer to queue with another function or same function.

Regards...

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

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

发布评论

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

评论(1

云朵有点甜 2024-10-28 04:44:28

在这种情况下,请勿将 char* 视为唯一允许的数据类型。

许多 *ix API 使用 char 作为通用缓冲区指针。

因此,将接口视为带有指向缓冲区的指针和缓冲区的大小。

该缓冲区可以是您喜欢的任何内容,从单个 int 到结构、类的序列化字符串表示形式,或者内存中的任何其他内容。

int i;
mq_send(mq, (char *) &i, sizeof(i), 0);

应该有效(未经测试)

祝你好运

Do not read the char* in this case as the only allowed datatype.

Many *ix API use char as a generic buffer pointer.

View the interface therefore as taking a pointer to buffer and the size of the buffer.

That buffer can be anything you like, from a single int, to a struct, seralized string representation of your class, or just about anything else in memory.

int i;
mq_send(mq, (char *) &i, sizeof(i), 0);

Should work (not tested)

Good Luck

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