search
HomeBackend DevelopmentGolangWhat should I do if golang cannot import packages?

What should I do if golang cannot import packages?

Jun 24, 2020 pm 01:09 PM
golangGuide package

What should I do if golang cannot import packages?

Solution to the problem that golang cannot import packages:

Import packages:

Standard package use is a given short path, such as "fmt", "net/http"

For your own package, you need to specify a directory under the working directory (GOPATH). The import package is actually based on the working directory. Folder directory

Multiple ways to import packages:

  • Import directly from the $GOPATH/src directoryimport "test/lib"(The path is actually $GOPATH/src/test/lib)

  • Alias ​​import: import alias_name "test/lib" , when used in this way, you can directly use the alias

  • Use the dot to import: import. "test/lib", function When using it, simply omit the package name

and use underscores to import: import _ "test/lib". This operation actually just introduces the package. When a package is imported, all its init() functions will be executed, but sometimes you don't really need to use these packages, you just want its init() function to be executed. At this time, you can use the _ operation to reference the package. Even if you use the _ operation to reference a package, you cannot call the exported functions in the package through the package name, but just to simply call its init function ().

Often these init functions register the engines in their own packages so that they can be easily used by the outside world. For example, packages that implement database/sql all call sql.Register(name) in the init functions. string, driver driver.Driver)Register yourself, and then it can be used externally.

Relative path importimport "./model"//The model directory in the same directory as the current file, but this method of import is not recommended

Package import Process description:

The initialization and execution of the program start from the main package. If the main package also imports other packages, they will be imported in sequence during compilation. Sometimes a package will be imported by multiple packages at the same time, so it will only be imported once (for example, many packages may use the fmt package, but it will only be imported once, because there is no need to import it multiple times).

When a package is imported, if the package also imports other packages, the other packages will be imported first, and then the package-level constants and variables in these packages will be initialized, and then init will be executed. function (if any), and so on. After all imported packages are loaded, the package-level constants and variables in the main package will be initialized, then the init function in the main package will be executed (if it exists), and finally the main function will be executed. The following figure explains the entire execution process in detail:

What should I do if golang cannot import packages?

Note:

There are several ways to import Go packages, with different uses. The code is stored uniformly in the working directory. There will be many packages in the working directory. Different packages are organized by directory, and the packages are composed of multiple code files. When importing a package, import it according to the unique path of the package. The imported package must be used by default. If it is not used, the compilation will fail and needs to be removed to reduce the introduction of unnecessary code. Of course, there are other usage scenarios. By default, we use the file name as the package name for easy understanding. Different packages organize different function implementations to facilitate understanding.

Did you use the package source code or .a when compiling?

A non-main package will generate a .a file after compilation (generated in a temporary directory, unless it is installed to $GOROOT or # using go install ##$GOPATH, otherwise you won’t be able to see it. a), used for subsequent executable program linking. For example, the source code path corresponding to the package in the Go standard library is: $GOROOT/src, and the path to the compiled .a file of the package in the standard library is $GOROOT/pkg/darwin_amd64 Down. A strange question arises in my head. When compiling, does the compiler use .a or source code?

  • When using third-party packages, when the source code and .a are both installed, the compiler links to the source code. The so-called use of third-party package source code is actually a link to the

    .a file in the temporary directory compiled with the latest source code.

  • Are the packages in the Go standard library also like this? For standard libraries, such as fmt, when compiling, should you use the source code under $GOROOT/src or the compiled .a under $GOROOT/pkg? However, unlike custom packages, even if you modify the source code of the fmt package (without recompiling the GO installation package), when the user source code is compiled, there will be no attempt to recompile the fmt package. The link will still be compiled when the link is made. fmt.a

In Go language, is the last element in the path after import the package name or the path name?

  • #The last element after import should be the path, which is the directory, not the package name. But many times, the path name is the same as the package name

  • import m "lib/math" m refers to the only package in the lib/math path. If the compiler finds two packages in this path, it is not allowed. Compile Error reporting

Recommended tutorial: "go language tutorial"

The above is the detailed content of What should I do if golang cannot import packages?. 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
C   and Golang: When Performance is CrucialC and Golang: When Performance is CrucialApr 13, 2025 am 12:11 AM

C is more suitable for scenarios where direct control of hardware resources and high performance optimization is required, while Golang is more suitable for scenarios where rapid development and high concurrency processing are required. 1.C's advantage lies in its close to hardware characteristics and high optimization capabilities, which are suitable for high-performance needs such as game development. 2.Golang's advantage lies in its concise syntax and natural concurrency support, which is suitable for high concurrency service development.

Golang in Action: Real-World Examples and ApplicationsGolang in Action: Real-World Examples and ApplicationsApr 12, 2025 am 12:11 AM

Golang excels in practical applications and is known for its simplicity, efficiency and concurrency. 1) Concurrent programming is implemented through Goroutines and Channels, 2) Flexible code is written using interfaces and polymorphisms, 3) Simplify network programming with net/http packages, 4) Build efficient concurrent crawlers, 5) Debugging and optimizing through tools and best practices.

Golang: The Go Programming Language ExplainedGolang: The Go Programming Language ExplainedApr 10, 2025 am 11:18 AM

The core features of Go include garbage collection, static linking and concurrency support. 1. The concurrency model of Go language realizes efficient concurrent programming through goroutine and channel. 2. Interfaces and polymorphisms are implemented through interface methods, so that different types can be processed in a unified manner. 3. The basic usage demonstrates the efficiency of function definition and call. 4. In advanced usage, slices provide powerful functions of dynamic resizing. 5. Common errors such as race conditions can be detected and resolved through getest-race. 6. Performance optimization Reuse objects through sync.Pool to reduce garbage collection pressure.

Golang's Purpose: Building Efficient and Scalable SystemsGolang's Purpose: Building Efficient and Scalable SystemsApr 09, 2025 pm 05:17 PM

Go language performs well in building efficient and scalable systems. Its advantages include: 1. High performance: compiled into machine code, fast running speed; 2. Concurrent programming: simplify multitasking through goroutines and channels; 3. Simplicity: concise syntax, reducing learning and maintenance costs; 4. Cross-platform: supports cross-platform compilation, easy deployment.

Why do the results of ORDER BY statements in SQL sorting sometimes seem random?Why do the results of ORDER BY statements in SQL sorting sometimes seem random?Apr 02, 2025 pm 05:24 PM

Confused about the sorting of SQL query results. In the process of learning SQL, you often encounter some confusing problems. Recently, the author is reading "MICK-SQL Basics"...

Is technology stack convergence just a process of technology stack selection?Is technology stack convergence just a process of technology stack selection?Apr 02, 2025 pm 05:21 PM

The relationship between technology stack convergence and technology selection In software development, the selection and management of technology stacks are a very critical issue. Recently, some readers have proposed...

How to use reflection comparison and handle the differences between three structures in Go?How to use reflection comparison and handle the differences between three structures in Go?Apr 02, 2025 pm 05:15 PM

How to compare and handle three structures in Go language. In Go programming, it is sometimes necessary to compare the differences between two structures and apply these differences to the...

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),