search
HomeBackend DevelopmentGolangWhat does... mean in golang?

What does... mean in golang?

Dec 23, 2019 pm 02:19 PM
golang

What does... mean in golang?

What does... mean in golang?

In golang, the three dots "..." are actually a kind of syntactic sugar (sugar-coated syntax) for go.

Syntactic sugar (Syntactic sugar), also translated as sugar-coated syntax, is a term invented by British computer scientist Peter J. Landin. It refers to a certain feature added to a computer language. A syntax that has no impact on the functionality of the language, but is more convenient for programmers to use. Generally speaking, using syntax sugar can increase the readability of the program, thereby reducing the chance of program code errors.

Usage of "...":

● The first usage is mainly used when the function has multiple indefinite parameters, expressed as Variable parameters can accept any number of parameters of the same type.

● The second usage is that slices can be broken up and transferred.

The following is an example:

func test1(args ...string) { //可以接受任意个string参数
    for _, v:= range args{
        fmt.Println(v)
    }
}
func main(){
var strss= []string{
        "qwr",
        "234",
        "yui",
        "cvbc",
    }
    test1(strss...) //切片被打散传入
}

Result:

qwr
234
yui
cvbc

The number of elements inside the strss slice can be any number, and the test1 function can accept it .

Second example:

    var strss= []string{
        "qwr",
        "234",
        "yui",
    }
    var strss2= []string{
        "qqq",
        "aaa",
        "zzz",
        "zzz",
    }
strss=append(strss,strss2...) //strss2的元素被打散一个个append进strss
fmt.Println(strss)

Result:

[qwr 234 yui qqq aaa zzz zzz]

If there is no "...", facing the above situation, the amount of code will undoubtedly increase , with '...', doesn't it feel a lot simpler?

Recommended learning: go video tutorial

The above is the detailed content of What does... mean in golang?. 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
Solve the problem of inconsistent Go toolchain architectureSolve the problem of inconsistent Go toolchain architectureAug 26, 2025 am 10:39 AM

This article aims to answer the problem of inconsistent toolchain architecture encountered when building Go programs for ARM architecture. We will analyze why some Go tools (such as cgo, gofix, gofmt) will be built as ARM architecture, while others are still x86-64 architecture, and explain the limitations of cgo on the linux/arm platform and its future development direction.

Several ways to remove characters at the end of a string in GolangSeveral ways to remove characters at the end of a string in GolangAug 26, 2025 am 10:36 AM

This article introduces several common methods to remove the end of a string in Golang, focusing on how to determine whether the end of a string is a specific character, and select the appropriate removal method based on the judgment results. A variety of implementation solutions are provided, including direct manipulation of string slices, using strings.TrimRight function, and custom TrimSuffix function, and accompanied by detailed code examples and output results for easy understanding and application by readers.

Ignore errors in Google App Engine Datastore queryIgnore errors in Google App Engine Datastore queryAug 26, 2025 am 10:30 AM

This article describes how to gracefully handle ErrFieldMismatch errors when using Datastore queries in Google App Engine (GAE). Due to the flexibility of Datastore, entities of different structures are allowed to be stored with the same name, but may result in errors due to type mismatch or missing values ​​when retrieving. This article will guide you on how to modify the query method and how to use datastore.Map to avoid problems caused by PropertyList, so as to retrieve data safely.

Solve the problem that the App Engine Go development server cannot find the template packageSolve the problem that the App Engine Go development server cannot find the template packageAug 26, 2025 am 10:18 AM

This article provides a detailed solution to the common "template package cannot be found" problem in App Engine Go development. By analyzing the causes of errors and combining actual code examples, we explain how to correctly initialize the template and how to use parameters in the template, help developers successfully complete the development of App Engine Go applications.

C-to-Go language code conversion tools and practicesC-to-Go language code conversion tools and practicesAug 26, 2025 am 10:12 AM

The conversion of C code to Go is a complex engineering challenge aimed at leveraging the modern features and concurrency advantages of Go. This article will explore how existing automation tools, such as rc/c2go, can assist this process and analyze key challenges such as structure, memory management, and type mapping that may be encountered during the conversion process. Although automation tools can provide preliminary code, it still requires a lot of manual optimization to eventually generate code that meets Go language habits and high performance requirements.

Go language concurrent programming: mastering the synchronization mechanism of sync.WaitGroupGo language concurrent programming: mastering the synchronization mechanism of sync.WaitGroupAug 26, 2025 am 10:06 AM

sync.WaitGroup is an important tool for coroutine synchronization in Go language. It allows the main coroutine to wait for a group of child coroutines to complete execution. By adding the counter, Done reduces the counter, and Wait blocking until the counter is zeroed, WaitGroup ensures the orderly completion of concurrent tasks, which is the key to building robust concurrent applications.

Computing SHA-256 intermediate state hash in GoComputing SHA-256 intermediate state hash in GoAug 26, 2025 am 09:57 AM

This article introduces how to calculate the intermediate state of SHA-256 hash in Go, which is of great significance in scenarios such as Bitcoin mining. Due to the particularity of the Bitcoin protocol, specific endianness conversion of the data is required. This article will explain in detail how to handle these transformations and provide steps to modify the Go standard library to obtain intermediate state hashings, as well as corresponding code examples and considerations to help developers understand and implement this feature.

A practical guide to converting ANSI encoded text to UTF-8 strings in GoA practical guide to converting ANSI encoded text to UTF-8 strings in GoAug 26, 2025 am 09:48 AM

The strings in Go language are UTF-8 encoding by default, which means that when you need to process "ANSI" encoded text from outside, your byte sequence is actually correctly decoded from specific non-UTF-8 encodings (such as GBK, Windows-1252, etc.) into Unicode characters, and then represented in UTF-8 form by Go. This article will introduce in detail how to use the golang.org/x/text/encoding package to implement this transformation process, and provide practical code examples and precautions.

See all articles

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

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.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Hot Topics