codecamp

Apex - 数组

在Apex数组是基本相同的Apex列表。有作为其内部数据结构中的数组和列表之间没有逻辑的区别和方法也相同,但数组的语法是传统的小像Java。

下面是产品的Array的表示:
指数0 - HCL
指数1 - H2SO4
索引2 - NACL
指数3 - H2O
指数4 - N2
指数5 - U296

句法:

<String> [] = arrayOfProducts The new List <String> ();

例:

假设,我们想存储我们的产品名称,然后我们可以使用中,我们可以存储的产品名称如下图所示的阵列。可以通过指定索引访问特定产品。

// Define an array
String [] = arrayOfProducts The new List <String> ();
// The added array element
ArrayOfProducts.add ('HCL');
ArrayOfProducts.add ('H2SO4');
ArrayOfProducts.add ('NACL');
ArrayOfProducts.add ('water');
ArrayOfProducts.add ("N2");
ArrayOfProducts.add ('U296');


For the (integer i = 0; I <arrayOfProducts.size (); my ++) {
     // This loop prints all the elements of the array
     System.debug (array of values: '+ arrayOfProducts [I]);
}}

通过使用索引访问数组元素:

你可以通过使用索引来访问任何元素的数组,如下所示:

// Access the elements in the array
// We will access the element at index 3
System.debug ('in exponent 3 has the value:' + arrayOfProducts [3]);

Apex - 字符串
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }