Get Started with Apex的playground练习
生活随笔
收集整理的这篇文章主要介绍了
Get Started with Apex的playground练习
小编觉得挺不错的,现在分享给大家,帮大家做个参考.
public class StringArrayTest {public static List<String> generateStringArray(Integer n){List<String> myArray = new List<String>();for(Integer i=0;i<n;i++){myArray.add('Test '+i);System.debug(myArray[i]);}return myArray;}
}
总结
以上是生活随笔为你收集整理的Get Started with Apex的playground练习的全部内容,希望文章能够帮你解决所遇到的问题。
- 上一篇: developer console 学习
- 下一篇: Create a method for