Omnet++仿真的起点函数和终点函数
Starting point function and finishing point function of a Omnet++ simulation
一般而言,当在 Omnet++ 中进行 运行 模拟(具有网络和模块数量)时,该模拟的起点是什么函数?另外,模拟的终点是什么功能?
比如我想在起始函数体中加入如下命令:
EV << "The simulation is started";
并在结束函数体中加入以下命令:
EV << "The simulation is finished";
提前致谢
您要查找的是 initialize()
和 finish()
。
如果您需要全局回调,那么 cISimulationLifecycleListener
可能更合适。参见 manual.
一般而言,当在 Omnet++ 中进行 运行 模拟(具有网络和模块数量)时,该模拟的起点是什么函数?另外,模拟的终点是什么功能? 比如我想在起始函数体中加入如下命令:
EV << "The simulation is started";
并在结束函数体中加入以下命令:
EV << "The simulation is finished";
提前致谢
您要查找的是 initialize()
和 finish()
。
如果您需要全局回调,那么 cISimulationLifecycleListener
可能更合适。参见 manual.