如何获取OMNet中动态创建的模块的对象++ 4?
我是 OMNet 的新手。在我的项目中,我动态创建一个简单的模块,并且我想使用该模块创建的对象。有人可以给我一些帮助吗?
来源在这里:
cModuleType* moduleType = cModuleType::get("Person");
cModule *mod = moduleType->create("per", this->getParentModule());
mod->buildInside();
mod->scheduleStart(simTime());
mod->callInitialize();
job->mod = mod;
基本上,我想找到与“mod”相关的对象。
谢谢
I'm a newbie in OMNet. In my project, I dynamically create a simple module, and I want to use the object created by this module. Does anyone can give me some help?
Source is here:
cModuleType* moduleType = cModuleType::get("Person");
cModule *mod = moduleType->create("per", this->getParentModule());
mod->buildInside();
mod->scheduleStart(simTime());
mod->callInitialize();
job->mod = mod;
Basically, I want to find the object related to the "mod".
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定你的意思是“找到”你创建的对象。您已经拥有了创建的对象,您可能只需要对其进行强制转换即可对其执行任何有用的操作。
如果您的意思是要对模块“mod”进行操作,则可以通过将“mod”转换为您声明的模块类型(例如 MyModule)来完成此操作。
然后,您可以在 MyModule 类(通常是 MyModule.cc)中定义一些公共函数来执行您想做的任何操作。
如果您已完成此操作,则在当前函数中,您可以直接执行以下操作:
我希望这能回答您的问题。
I'm not sure what you mean "find" the object you created. You already have the object you created, you probably just need to cast it to do anything useful with it.
If you mean you want to operate on the module "mod", you can do this by casting "mod" to the module type which you've declared (say MyModule).
You can then define some public functions in the class of MyModule (usually MyModule.cc) that do whatever you want to do.
If you've done this, in the current function, you can just go:
I hope this answers your question.