例如,我有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;
在模拟过程中,OMNet ++会告诉我有关Enter_Method的信息。如何解决这个问题?