如何将列表或数字存储到JSL中的空数组中



我遇到了如何将列表或数字存储到空数组中的问题,下面是我的代码:

    For( i = 1, i <= N Items( S ), i++,
    dt:Family Device << set name( "family device" );
    dt << Select Where(Starts With( dt:family device, S[i] ) ) ;
    baseDT = dt << Subset( output table name( "Subset" ), selected rows( 1 ), selected columns( 0 ), "invisible");  

我计划将基于空数阵列存储,任何人都对商店功能有一个想法吗?如果在Python中,我对JSL非常新手,我们将使用附录函数存储,那么JSL?

怎么样

初始化一个空数组为

emp_array = {};

附加到数组为:

Insert Into(emp_array, baseDT)

然后您可以使用索引访问元素:

emp_array[n]

最新更新