二维数组的问题,已解决,谢谢

OnBar(ArrayRef<Integer> indexs) { Array<Array<Numeric>> table_p=[ [9,1], [12,1]]; Integer i; Commentary("参数总表:"+Text(table_p[0][0])); Numeric find; Numeric direct; for i=0 to GetArraySize(table_p)-1 { find=table_p[i][0]; direct=table_p[i][1]; Commentary("参数:"+text(find)+" "+text(direct)); } }