Vai - se ... altrimenti dichiarazione

Un if l'istruzione può essere seguita da un opzionale else istruzione, che viene eseguita quando l'espressione booleana è falsa.

Sintassi

La sintassi di un file if...else dichiarazione nel linguaggio di programmazione Go è -

if(boolean_expression) {
   /* statement(s) will execute if the boolean expression is true */
} else {
   /* statement(s) will execute if the boolean expression is false */
}

Se l'espressione booleana restituisce true, poi il if block di codice verrà eseguito, altrimenti else block di codice viene eseguito.

Diagramma di flusso

Esempio

package main

import "fmt"

func main() {
   /* local variable definition */
   var a int = 100;
 
   /* check the boolean condition */
   if( a < 20 ) {
      /* if condition is true then print the following */
      fmt.Printf("a is less than 20\n" );
   } else {
      /* if condition is false then print the following */
      fmt.Printf("a is not less than 20\n" );
   }
   fmt.Printf("value of a is : %d\n", a);
}

Quando il codice precedente viene compilato ed eseguito, produce il seguente risultato:

a is not less than 20;
value of a is : 100

L'istruzione if ... else if ... else

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

Quando si usano le istruzioni if, else if, else ci sono pochi punti da tenere a mente:

  • Un if può avere zero o un altro e deve venire dopo qualsiasi altro se.

  • Un if può avere da zero a molti altri se e devono venire prima dell'altro.

  • Una volta che un altro se ha esito positivo, nessuno degli altri if o else rimanenti verrà testato.

Sintassi

La sintassi di un file if...else if...else dichiarazione nel linguaggio di programmazione Go è -

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

package main

import "fmt"

func main() {
   /* local variable definition */
   var a int = 100
 
   /* check the boolean condition */
   if( a == 10 ) {
      /* if condition is true then print the following */
      fmt.Printf("Value of a is 10\n" )
   } else if( a == 20 ) {
      /* if else if condition is true */
      fmt.Printf("Value of a is 20\n" )
   } else if( a == 30 ) {
      /* if else if condition is true  */
      fmt.Printf("Value of a is 30\n" )
   } else {
      /* if none of the conditions is true */
      fmt.Printf("None of the values is matching\n" )
   }
   fmt.Printf("Exact value of a is: %d\n", a )
}

Quando il codice precedente viene compilato ed eseguito, produce il seguente risultato:

None of the values is matching
Exact value of a is: 100