Ricerca…
Sintassi
- func (t T) exampleOne (i int) (n int) {return i} // questa funzione riceverà una copia di struct
- func (t * T) exampleTwo (i int) (n int) {return i} // questo metodo riceverà il puntatore a struct e sarà in grado di modificarlo
Metodi di base
I metodi in Go sono come le funzioni, tranne che hanno un ricevitore .
Di solito il ricevitore è una sorta di struttura o tipo.
package main
import (
"fmt"
)
type Employee struct {
Name string
Age int
Rank int
}
func (empl *Employee) Promote() {
empl.Rank++
}
func main() {
Bob := new(Employee)
Bob.Rank = 1
fmt.Println("Bobs rank now is: ", Bob.Rank)
fmt.Println("Lets promote Bob!")
Bob.Promote()
fmt.Println("Now Bobs rank is: ", Bob.Rank)
}
Produzione:
Bobs rank now is: 1
Lets promote Bob!
Now Bobs rank is: 2
Metodi di concatenamento
Con i metodi in golang puoi fare il metodo "concatenare" il puntatore che passa al metodo e restituire il puntatore alla stessa struttura in questo modo:
package main
import (
"fmt"
)
type Employee struct {
Name string
Age int
Rank int
}
func (empl *Employee) Promote() *Employee {
fmt.Printf("Promoting %s\n", empl.Name)
empl.Rank++
return empl
}
func (empl *Employee) SetName(name string) *Employee {
fmt.Printf("Set name of new Employee to %s\n", name)
empl.Name = name
return empl
}
func main() {
worker := new(Employee)
worker.Rank = 1
worker.SetName("Bob").Promote()
fmt.Printf("Here we have %s with rank %d\n", worker.Name, worker.Rank)
}
Produzione:
Set name of new Employee to Bob
Promoting Bob
Here we have Bob with rank 2
Operatori di decremento dell'incremento come argomenti in Metodi
Sebbene Go supporti ++ e - operatori e il comportamento sia quasi simile a c / c ++, le variabili con tali operatori non possono essere passate come argomento per funzionare.
package main
import (
"fmt"
)
func abcd(a int, b int) {
fmt.Println(a," ",b)
}
func main() {
a:=5
abcd(a++,++a)
}
Output: errore di sintassi: inaspettato ++, in attesa di virgola o)
Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow