如何在Linux中使用POSIX API通过消息队列发送整数?
我尝试通过消息队列发送整数,但函数 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这种情况下,请勿将 char* 视为唯一允许的数据类型。
许多 *ix API 使用 char 作为通用缓冲区指针。
因此,将接口视为带有指向缓冲区的指针和缓冲区的大小。
该缓冲区可以是您喜欢的任何内容,从单个 int 到结构、类的序列化字符串表示形式,或者内存中的任何其他内容。
应该有效(未经测试)
祝你好运
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.
Should work (not tested)
Good Luck