Go でさまざまなパッケージの型を使用するにはどうすればよいですか?

DDD
リリース: 2024-11-15 09:07:02
オリジナル
730 人が閲覧しました

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 中国語 Web サイトの他の関連記事を参照してください。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート