如果我想使用循环填充具有大量基本类型值的数组。如何克服太多的代码语句限制?
Integer[] arr = new Integer[]{};
for(Integer i=0; i<500000; i++) {
arr.add(i);
}
感谢。
答案 0 :(得分:0)
这可能会有所帮助 http://www.salesforce.com/us/developer/docs/apexcode/Content/apex_gov_limits.htm
它显示了我认为您正在使用的代码中脚本数量的一些限制。
告诉我它是否有效!