Apex有四种转换器:String类型转换器、Integer类型转换器、Boolean类型转换器和Date类型转换器。String类型转换器可以将字符串转换为其他类型,如日期类型、数字类型、布尔类型等;Integer类型转换器可以将整数转换为其他类型,如字符串类型、日期类型、布尔类型等;Boolean类型转换器可以将布尔值转换为其他类型,如字符串类型、数...
1、原始数据类型(Primitive) 整数:Integer 双精度:Double 单精度:Decimal 长整型:Long 日期:Date 日期时间:Datetime 字符串:String ID:ID 布尔值:Boolean 2、整数类型 Integer 任何32位数,不包括任何小数点的数。 值的范围是-2,147,483,648,最大值为2,147,483,647。 【示例】声明一个变量,保存参加运动会跳远...
一)基本变量:1)IntegerInteger表示一个32位整数的对象,取值范围为-231 - 231.Integer主要有两个方法:1234567891011/* public String format() /译:将Integer值转换成String类型的值 */Integer goodsCount = 12;System.debug( 4、'将Integer值转成String: ' + goodsCount.format();/* public static Integer ...
在 Apex 中我们可以创建一个单引号包围的字符串,然后将它赋值给一个 String 类型的变量,如下所示:String testString = 'just for testing string' ;除了上面这种方式,我们也可以将其他的类型转变为 String 类型,通过执行 String 类自带的静态 valueOf() 方法可以将其他类型变为 String 类型:Integer a = 1;...
s.compareTo('A'); 就会产生错误 类型转化 Apex中的隐式类型转换:对于数字类型,精度由低到高依次是Integer,Long,Double,Decimal,低精度的类型可以自动转换为高精度类型, 另外ID类型的值常自动转换成String类型,String类型的值也可以隐式转换成ID类型,但是在运行期间,会将该值进行检查,如果不是合法的ID类型,则抛出...
public String format() //译:将Integer值转换成String类型的值 */ Integer goodsCount = 12;System.debug('将Integer值转成String: ' + goodsCount.format());/* public static Integer valueOf(String stringToObject) //译:将String类型转成Integer...
StringproductName='HCL';Integeri=0;SetsetOfProducts=newSet();MapmapOfProductIdToName=newMap(); 请注意,所有变量都赋值为null。 声明变量 您可以在Apex中声明变量,如String和Integer,如下所示: StringstrName='My String';//String variable declarationIntegermyInteger=1;//Integer variable declarationBoolean...
Set<string> setOfProducts = new Set<string>(); Map<id, string> mapOfProductIdToName = new Map<id, string>(); 请注意,所有变量都赋值为null。 Declaring Variables 您可以在Apex中声明变量,如String和Integer,如下所示 - String strName = 'My String'; //String variable declaration ...
原始数据类型(primitive):Integer, Double, Long, Date, Datetime, String, ID, Boolean sObject数据类型:比如标准对象 Account, Contact等 或者自定义对象 MyCustomObject__c 集合(collection):Lists、Sets、Maps 类型化的值列表,也称为枚举(enum ) 用户自定义的 Apex 类创建的对象 ...
Primitive (Integer, Double, Long, Date, Datetime, String, ID, or Boolean) 原始(整数,双精度,长整型,日期,日期时间,字符串,ID或布尔值) Collections (Lists, Sets and Maps) (To be covered in Chapter 6) 集合(列表,集合和地图)(将在第6章中讨论) ...