0

如果我想使用循环填充具有大量原始类型值的数组。如何克服代码语句过多的限制?

Integer[] arr = new Integer[]{};
for(Integer i=0; i<500000; i++) {
     arr.add(i);
}

谢谢。

4

1 回答 1

0

这可以帮助 http://www.salesforce.com/us/developer/docs/apexcode/Content/apex_gov_limits.htm

它显示了我认为您正在使用的代码中脚本数量的一些限制。

告诉我它是否有效!

于 2013-04-01T22:05:25.460 回答