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.
以下代码不起作用,但我认为我想做什么很清楚:
my.struct = 1; foo.bar = my.struct;
以便
foo.bar.struct = 1
基本上我想my用一堆字段和值填充结构数组。然后我想将该结构作为嵌套结构放置在foo.bar其中,同时保留字段名称。
my
foo.bar
这只是将my.struct(= 1) 的值放在foo.bar. 当然那foo.bar只是1。
my.struct
1
我想你在这之后:
my.struct = 1 foo.bar = my;