0

以下代码不起作用,但我认为我想做什么很清楚:

my.struct = 1;
foo.bar = my.struct;

以便

foo.bar.struct = 1

基本上我想my用一堆字段和值填充结构数组。然后我想将该结构作为嵌套结构放置在foo.bar其中,同时保留字段名称。

4

1 回答 1

1
my.struct = 1;
foo.bar = my.struct;

这只是将my.struct(= 1) 的值放在foo.bar. 当然那foo.bar只是1

我想你在这之后:

my.struct = 1
foo.bar = my;
于 2013-05-10T19:39:32.613 回答