search
HomeBackend DevelopmentGolangFocus on the syntax and usage of Golang methods

As a relatively young language, Golang also has its own unique implementation method. This article will focus on the syntax and usage of Golang methods.

1. Method definition

Methods can be defined for any type in Golang, including reference types and non-reference types. The method definition format is as follows:

func (t Type) methodName(parameterList) (returnList){
    //方法体
}

Among them, t is the receiver, Type represents the receiver type, methodName is the method name, parameterList and returnList represent the method parameter and return value lists respectively.

The receiver can be a value type or a pointer type. The corresponding * or & symbol must be added when defining the method, for example:

func (p *Person) SetName(name string) {
    p.name = name
}

2. Method call

In Golang Method calls are similar to function calls, except that a corresponding receiver needs to be provided when calling. For example:

package main

import "fmt"

type Person struct {
    name string
}

func (p *Person) SetName(name string) {
    p.name = name
}

func (p Person) GetName() string {
    return p.name
}

func main() {
    p := Person{name: "张三"}
    fmt.Println(p.GetName()) // 输出:张三
    p.SetName("李四")
    fmt.Println(p.GetName()) // 输出:李四
}

In the above example, a structure called Person is first defined, which contains a name attribute of string type. Then, two methods are defined: SetName and GetName, which are used to set and get the value of the name attribute respectively. In the main function, a variable p of type Person is first created, and its GetName method is called, and the name attribute value of p is "Zhang San". Then, the SetName method was called to modify the value to "John Doe", and then the GetName method was called to output the modified name attribute value "John Doe".

3. Value and pointer receivers

As can be seen from the previous code examples, methods can be defined for value types or pointer types. So what is the difference between these two methods?

Note: Different receiver types cannot be assigned to each other.

1. Value receiver

When the method is defined, if the receiver is a value type, then the receiver will be copied when the method is called. Therefore, operations performed on the copied instance have no impact on the original instance. For example:

package main

import "fmt"

type Person struct {
    name string
}

func (p Person) GetName() string {
    return p.name
}

func (p Person) SetName(name string) {
    p.name = name
}

func main() {
    p1 := Person{name: "张三"}
    p2 := p1
    p2.SetName("李四")
    fmt.Println(p1.GetName()) // 输出:张三
    fmt.Println(p2.GetName()) // 输出:李四
}

The method Setname defined by the value type receiver will copy the original value when instantiated, so p1 and p2 are actually two different instances. So when p2 calls the SetName method to modify the attribute value, it has no effect on p1.

2. Pointer receiver

When the method is defined, if the receiver is a pointer type, then when the method is called, the object pointed to by the pointer is actually operated. If the method modifies the object, it will directly affect the original object. For example:

package main

import "fmt"

type Person struct {
    name string
}

func (p *Person) GetName() string {
    return p.name
}

func (p *Person) SetName(name string) {
    p.name = name
}

func main() {
    p1 := &Person{name: "张三"}
    p2 := p1
    p2.SetName("李四")
    fmt.Println(p1.GetName()) // 输出:李四
    fmt.Println(p2.GetName()) // 输出:李四
}

The method SetName defined by the pointer type receiver will directly modify the attribute value of the pointed object, and p1 and p2 point to the same object, so when one of them calls the SetName method to modify the attribute value, It also has an impact on another object.

4. Structure embedding method

Golang allows structure embedding, that is, a structure can contain member variables of other structure types. This method is often called combination.

When embedding a structure, you can add * or & before the type name to indicate embedded pointer type or value type. For example:

type Person struct {
    name string
}

func (p *Person) GetName() string {
    return p.name
}

type Employee struct {
    *Person
    age int
}

func main() {
    emp := &Employee{Person: &Person{"张三"}, age: 28}
    fmt.Println(emp.GetName()) // 输出:张三
}

In this example, a Person structure type is first defined, including a name attribute of string type and a GetName method. Then, an Employee structure type is defined, the Persion structure type is embedded, and an age attribute of integer type is added. When finally instantiating emp, use the curly brace initialization method to initialize an object of this type for the Persion property. When calling the GetName method of emp, it actually calls the GetName method of the Persion property inside emp, thus outputting "Zhang San".

5. Summary

Methods in Golang are similar to function methods, but have a clearer function scope. The method defined by the pointer type receiver can directly modify the attribute value of the object, thereby increasing the flexibility of the method and avoiding the trouble of reassigning the value through the return value. When using structure embedding, redundant code can be avoided, making the program more concise.

The above is the detailed content of Focus on the syntax and usage of Golang methods. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How do you use the pprof tool to analyze Go performance?How do you use the pprof tool to analyze Go performance?Mar 21, 2025 pm 06:37 PM

The article explains how to use the pprof tool for analyzing Go performance, including enabling profiling, collecting data, and identifying common bottlenecks like CPU and memory issues.Character count: 159

How do you write unit tests in Go?How do you write unit tests in Go?Mar 21, 2025 pm 06:34 PM

The article discusses writing unit tests in Go, covering best practices, mocking techniques, and tools for efficient test management.

How do I write mock objects and stubs for testing in Go?How do I write mock objects and stubs for testing in Go?Mar 10, 2025 pm 05:38 PM

This article demonstrates creating mocks and stubs in Go for unit testing. It emphasizes using interfaces, provides examples of mock implementations, and discusses best practices like keeping mocks focused and using assertion libraries. The articl

How can I define custom type constraints for generics in Go?How can I define custom type constraints for generics in Go?Mar 10, 2025 pm 03:20 PM

This article explores Go's custom type constraints for generics. It details how interfaces define minimum type requirements for generic functions, improving type safety and code reusability. The article also discusses limitations and best practices

How can I use tracing tools to understand the execution flow of my Go applications?How can I use tracing tools to understand the execution flow of my Go applications?Mar 10, 2025 pm 05:36 PM

This article explores using tracing tools to analyze Go application execution flow. It discusses manual and automatic instrumentation techniques, comparing tools like Jaeger, Zipkin, and OpenTelemetry, and highlighting effective data visualization

Explain the purpose of Go's reflect package. When would you use reflection? What are the performance implications?Explain the purpose of Go's reflect package. When would you use reflection? What are the performance implications?Mar 25, 2025 am 11:17 AM

The article discusses Go's reflect package, used for runtime manipulation of code, beneficial for serialization, generic programming, and more. It warns of performance costs like slower execution and higher memory use, advising judicious use and best

How do you use table-driven tests in Go?How do you use table-driven tests in Go?Mar 21, 2025 pm 06:35 PM

The article discusses using table-driven tests in Go, a method that uses a table of test cases to test functions with multiple inputs and outcomes. It highlights benefits like improved readability, reduced duplication, scalability, consistency, and a

How do you specify dependencies in your go.mod file?How do you specify dependencies in your go.mod file?Mar 27, 2025 pm 07:14 PM

The article discusses managing Go module dependencies via go.mod, covering specification, updates, and conflict resolution. It emphasizes best practices like semantic versioning and regular updates.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.