OMNET++中如何通过单个emit()传递多个变量?

发布于 2025-01-10 18:22:51 字数 958 浏览 1 评论 0原文

根据 OMNET++ 模拟手册,emit() 可以携带的类型是:“值可以是 bool、long、double、simtime_t、const char * 或 (const) cObject * 类型。可以强制转换其他类型转换为这些类型之一,或包装到从 cObject 子类化的对象中。”

因此,要通过单个 emit() 传递多个变量,必须使用 cObject。手册对此的解决方案是创建一个由 cObject 驱动的类来保存值并将其传递给 emit()。

 class cRawTableData : public cObject, noncopyable
{
public:
    unsigned int sVehicleID;
    double sPositionX;                    
    double sPositionY;                                     
    double sSpeed;                    
};

if (hasListeners(rawTableSignal)){
cRawTableData tmp;
tmp.sVehicleID=senderId;
tmp.sPositionX=senderPOx;
tmp.sPositionY=senderPOy;
tmp.sSpeed=senderSpeed;
emit(rawTableSignal, &tmp);
}

但是,当我运行模拟时,出现此错误:

omnetpp::VectorRecorder: Cannot convert cObject* to double

运行时错误

我做错了什么?谢谢你的帮助

According to OMNET++ Simulation Manual the types can be carried by emit() are, "The value can be of type bool, long, double, simtime_t, const char * , or (const) cObject * . Other types can be cast into one of these types, or wrapped into an object subclassed from cObject."

So to pass multiple vairables through single emit(), cObject must be used. The Manual's solution for this is to create a class driven from cObject to hold the values and pass it to the emit().

 class cRawTableData : public cObject, noncopyable
{
public:
    unsigned int sVehicleID;
    double sPositionX;                    
    double sPositionY;                                     
    double sSpeed;                    
};

if (hasListeners(rawTableSignal)){
cRawTableData tmp;
tmp.sVehicleID=senderId;
tmp.sPositionX=senderPOx;
tmp.sPositionY=senderPOy;
tmp.sSpeed=senderSpeed;
emit(rawTableSignal, &tmp);
}

However, when I run the simulation I get this error:

omnetpp::VectorRecorder: Cannot convert cObject* to double

run-time error

What is that I am doing wrong? thank you for the help

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文