What is the go language package?
Go language package is the basic management unit of golang. There can be multiple different files in the same package. As long as the header of each file has the same name of "package xxx", it can be used in the main method Use "xxx.Method()" to call methods in different files.
The operating environment of this tutorial: Windows 7 system, GO version 1.18, Dell G3 computer.
Understanding of go package
golang package is the basic management unit. Under the same package, there can be many different files, as long as the header of each file If they all have the same name such as "package xxx", you can use xxx.Method() in the main method to call methods in different files.
The folder name can be inconsistent with the name of the package.
For example, I have a folder named mypackage, which contains three files: a.go, b.go, and c.go:
mypackage | --a.go | --b.go | --c.go
For example, there is Saya() in a.go, and Sayb() in b.go. The package name common to several files is indeed testpackage
, so call a in the main function. Just use the respective methods in go and b.go files, testpackage.Saya(), testpackage.Sayb().
There is also the default init method, which is executed when the import comes in, and each file is allowed to have the init() method. Of course, each one will be executed.
Related introduction:
Go (also known as Golang) is a statically strongly typed, compiled, concurrent, and garbage collection programming language developed by Google.
Robert Griesemer, Rob Pike and Ken Thompson began designing Go in September 2007, and later Ian Lance Taylor, Russ Cox joins the project. Go is developed based on the Inferno operating system. Go was officially announced in November 2009, becoming an open source project and implemented on Linux and Mac OS X platforms, and later added implementation under Windows systems. In 2016, Go was selected as "TIOBE's Best Language of 2016" by the software evaluation company TIOBE. Currently, Go releases a second-level version every six months (that is, upgrading from a.x to a.y).
For more related technical articles, please visit the go language column!
The above is the detailed content of What is the go language package?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Queue threading problem in Go crawler Colly explores the problem of using the Colly crawler library in Go language, developers often encounter problems with threads and request queues. �...

The library used for floating-point number operation in Go language introduces how to ensure the accuracy is...

Regarding the problem of custom structure tags in Goland When using Goland for Go language development, you often encounter some configuration problems. One of them is...

Which libraries in Go are developed by large companies or well-known open source projects? When programming in Go, developers often encounter some common needs, ...

Go pointer syntax and addressing problems in the use of viper library When programming in Go language, it is crucial to understand the syntax and usage of pointers, especially in...

The difference between string printing in Go language: The difference in the effect of using Println and string() functions is in Go...

Performance optimization strategy for Go language massive URL access This article proposes a performance optimization solution for the problem of using Go language to process massive URL access. Existing programs from CSV...

Using Golang to implement Linux...
