📅  最后修改于: 2020-11-05 03:09:52             🧑  作者: Mango
Apex中的数组与Apex中的列表基本相同。数组和列表之间没有逻辑上的区别,因为它们的内部数据结构和方法也相同,但是数组语法不像Java那样传统。
以下是产品数组的表示-
索引0 -HCL
索引1 -H2SO4
索引2 -NACL
索引3 -H2O
索引4 -N2
索引5 -U296
[] arrayOfProducts = new List();
假设我们必须存储产品的名称-我们可以在其中使用数组的方式存储产品名称,如下所示。您可以通过指定索引来访问特定的产品。
//Defining array
String [] arrayOfProducts = new List();
//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
您可以使用索引如下所示访问数组中的任何元素-
//Accessing the element in array
//We would access the element at Index 3
System.debug('Value at Index 3 is :'+arrayOfProducts[3]);