首页  >  文章  >  后端开发  >  如何在 Go 中使用不同包中的类型?

如何在 Go 中使用不同包中的类型?

DDD
DDD原创
2024-11-15 09:07:02728浏览

How to Use Types from Different Packages in Go?

Importing Packages and Types

In Go, a common issue arises when attempting to import a type from a different package. This problem is highlighted by the following code structure:

src
|-->config
       |--> config.go
|-->otherPackage
       |--> otherFile.go
|-->main.go

The goal is to use a type declared in config.go within the otherFile.go file. However, importing config within otherFile.go leads to errors such as "imported and not used" and "undefined: Config."

Go does not support importing specific types from a package. Instead, you must import the entire package, thus qualifying any type references with the package name, like so:

import (
    "fmt"
    "math"
    "./config"
)

Using this import statement, you can reference the type Config from config.go using the fully qualified name config.Config. Alternatively, to prevent shadowing, you can:

  1. Rename the config variable to something else (e.g., cfg).
  2. Reference Config using its qualified name, config.Config.

以上是如何在 Go 中使用不同包中的类型?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn