Buscar..


Sintaxis

  • func (t T) exampleOne (i int) (n int) {return i} // esta función recibirá una copia de la estructura
  • func (t * T) exampleTwo (i int) (n int) {return i} // este método recibirá el puntero a la estructura y podrá modificarlo

Metodos basicos

Los métodos en Go son como funciones, excepto que tienen receptor .

Normalmente el receptor es algún tipo de estructura 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)

}

Salida:

Bobs rank now is:  1
Lets promote Bob!
Now Bobs rank is:  2

Métodos de encadenamiento

Con los métodos en golang puede hacer el método "encadenar" pasando el puntero al método y devolviendo el puntero a la misma estructura como esta:

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)

}

Salida:

Set name of new Employee to Bob
Promoting Bob
Here we have Bob with rank 2

Operadores de incremento-decremento como argumentos en los métodos

Aunque Go admite operadores ++ y - y se encuentra que el comportamiento es casi similar a c / c ++, las variables con dichos operadores no se pueden pasar como argumento para funcionar.

    package main

    import (
        "fmt"
    )
    
    func abcd(a int, b int) {
     fmt.Println(a," ",b)
    }
    func main() {
        a:=5
        abcd(a++,++a)
    }

Salida: error de sintaxis: inesperado ++, esperando una coma o)



Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow