“Oświadczenie Swift Guard” Kod odpowiedzi

Oświadczenie Swift Guard

func testFunction() {
	let someValue:Int? = 5
	guard let temp = someValue else {
		return
	}
	print("It has some value \(temp)")
}

testFunction()
SAMER SAEID

Oświadczenie Swift Guard

var i = 2

while (i <= 10) {
    
  // guard condition to check the even number 
  guard i % 2 == 0 else {
   
     i = i + 1
    continue
  }

  print(i)
  i = i + 1
}
SAMER SAEID

Swift Składnia Oświadczenia o straży

guard expression else {
  // statements
  // control statement: return, break, continue or throw.
}
SAMER SAEID

Odpowiedzi podobne do “Oświadczenie Swift Guard”

Pytania podobne do “Oświadczenie Swift Guard”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu