如何使模块从另一个模块发送消息OMNet ++

时间:2017-04-12 18:00:04

标签: c++ omnet++

例如,我有2个简单模块sM1和sM2,现在我想sM2让sM1安排一条消息。我尝试使用该代码,但它没有工作



// this is the sM2
cSimpleModule *sM1  = check_and_cast<cSimpleModule *> (getModuleByPath("network.module.sM1"));
cMessage *Return = new cMessage("BAM");
sM1->scheduleAt(simTime(), Return);
&#13;
&#13;
&#13;

在模拟过程中,OMNet ++会告诉我有关Enter_Method的信息。如何解决这个问题?

0 个答案:

没有答案