“Szybkie metody” Kod odpowiedzi

Szybkie metody

class Person {
  . . .    
 
  // define methods
  func greet() {
  // method body    
  }
}
SAMER SAEID

Metody szybkie

class Person {
  
  // define a method
  func greet() {
    print("Hey there!")
  }
}

var nick = Person()

// call method
nick.greet()
SAMER SAEID

Odpowiedzi podobne do “Szybkie metody”

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

Przeglądaj inne języki kodu