Apex - 常量

2019-10-26 16:26 更新

與任何其他編程語言一樣,常量是一旦聲明或賦值就不改變它們的值的變量。

在Apex中,當我們想定義在整個程序執(zhí)行過程中應(yīng)該具有常量值的變量時,使用常量。 Apex常數(shù)用關(guān)鍵字'final'聲明。


例如:

考慮一個CustomerOperationClass類和一個常量變量regularCustomerDiscount,在它里面:

public class CustomerOperationClass {
    static final Double regularCustomerDiscount = 0.1;
    static Double finalPrice = 0;
    public static Double provideDiscount (Integer price) {
        //calculate the discount
        finalPrice = price - price*regularCustomerDiscount;
        return finalPrice;
    }
}


要查看上述類的Output,您必須在開發(fā)人員控制臺匿名窗口中執(zhí)行以下代碼:

Double finalPrice = CustomerOperationClass.provideDiscount(100);
System.debug('finalPrice '+finalPrice);

以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號