Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想实现这一点:
*.numPairs = ${N=3} **.host[0..N].udpApp[0].typename = "UdpBasicApp"
但它不起作用。但是,如果我这样做:**.host[0..3].udpApp[0].typename = "UdpBasicApp",那么它可以正常工作。这意味着问题在于N内部的变量host[](即host[0..N])不起作用。
**.host[0..3].udpApp[0].typename = "UdpBasicApp"
N
host[]
host[0..N]
谁能建议如何解决这个问题(即如何使变量在内部工作host[])?非常感谢。
不能将变量用作模块的索引。