Apex - 数组
2019-10-26 16:26 更新
Apex中的数组基本上与Apex中的列表相同。 在数组和列表之间没有逻辑区别,因为它们的内部数据结构和方法也是相同的,但是数组语法不像Java那样是传统的。
下面是产品数组( Array of Products )的表示:
Index 0 - HCL
Index 1 - H2SO4
Index 2 - NACL
Index 3 - H2O
Index 4 - N2
Index 5 - U296
语法:
<String> [] arrayOfProducts = new List<String>();
示例:
假设,我们想存储我们的产品的名称,那么我们可以使用数组,其中我们可以存储产品名称如下所示。 您可以通过指定索引来访问特定的产品。
//Defining array String [] arrayOfProducts = new List<String>(); //Adding elements in Array arrayOfProducts.add('HCL'); arrayOfProducts.add('H2SO4'); arrayOfProducts.add('NACL'); arrayOfProducts.add('H2O'); arrayOfProducts.add('N2'); arrayOfProducts.add('U296'); for (Integer i = 0; i<arrayOfProducts.size(); i++) { //This loop will print all the elements in array system.debug('Values In Array: '+arrayOfProducts[i]); }
使用索引访问数组元素:
您可以使用索引访问数组中的任何元素,如下所示:
//Accessing the element in array //We would access the element at Index 3 System.debug('Value at Index 3 is :'+arrayOfProducts[3]);
以上内容是否对您有帮助:
更多建议: