Apex - if elseif else dichiarazione

Un if l'istruzione può essere seguita da un opzionale else if...else istruzione, che è molto utile per testare varie condizioni utilizzando single if...else if dichiarazione.

Sintassi

La sintassi di un file if...else if...else l'affermazione è la seguente:

if boolean_expression_1 {
   /* Executes when the boolean expression 1 is true */
} else if boolean_expression_2 {
   /* Executes when the boolean expression 2 is true */
} else if boolean_expression_3 {
   /* Executes when the boolean expression 3 is true */
} else {
   /* Executes when the none of the above condition is true */
}

Esempio

Supponiamo che la nostra azienda chimica abbia clienti di due categorie: Premium e Normale. In base al tipo di cliente, dovremmo fornire loro sconti e altri vantaggi come assistenza e supporto post-vendita. Il seguente programma mostra un'implementazione dello stesso.

//Execute this code in Developer Console and see the Output
String customerName = 'Glenmarkone'; //premium customer
Decimal discountRate = 0;
Boolean premiumSupport = false;
if (customerName == 'Glenmarkone') {
   discountRate = 0.1; //when condition is met this block will be executed
   premiumSupport = true;
   System.debug('Special Discount given as Customer is Premium');
}else if (customerName == 'Joe') {
   discountRate = 0.5; //when condition is met this block will be executed
   premiumSupport = false;
   System.debug('Special Discount not given as Customer is not Premium');
}else {
   discountRate = 0.05; //when condition is not met and customer is normal
   premiumSupport = false;
   System.debug('Special Discount not given as Customer is not Premium');
}