在 ns2 中将变量从 .tcl 传递到 .cc

Pass variable from .tcl to .cc in ns2

提问人:science computer 提问时间:11/10/2023 最后编辑:Donal Fellowsscience computer 更新时间:11/11/2023 访问量:32

问:

我想将 nodenumber 从 .tcl 传递到 .cc 文件

我使用此代码,但出现此错误 错误:从“const char*”到“int”的转换无效 [-fpermissive]

代码:

在 .tcl 文件中:

Agent/AODV set total_nodes_ 50

在 .cc 文件中:

void
AODVAgent::delay_bind_init_all()
{
  int total_nodes_;

  AODVAgent() {
    bind("total_nodes_",&total_nodes_);
    printf("Total number of nodes %d \n",total_nodes_);
  };
};
TCL NS2

评论

0赞 Donal Fellows 11/11/2023
嗯,还有另一种相关的吗?不知道文档怎么说。bind

答: 暂无答案