“Métodos Swift” Respostas de código

Métodos Swift

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

Métodos Swift

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

var nick = Person()

// call method
nick.greet()
SAMER SAEID

Respostas semelhantes a “Métodos Swift”

Procure respostas de código populares por idioma

Procurar outros idiomas de código