Warum erhalte ich beim Importieren eines bestimmten Typs in Go die Fehlermeldungen „Importiert und nicht verwendet' und „Undefiniert'?

Mary-Kate Olsen
Freigeben: 2024-11-15 12:03:02
Original
195 Leute haben es durchsucht

Why Am I Getting

Import Package and Type

Question:

In the following project structure:

src
|-->config
       |--> config.go
|-->otherPackage
       |--> otherFile.go
|-->main.go
Nach dem Login kopieren

There is a type defined in config.go that needs to be used in otherFile.go. However, attempting to import it using the following statement results in errors:

import (
    "fmt"
    "math"
    "../config"
)
Nach dem Login kopieren

The specific errors are:

  • Imported and not used.
  • Undefined: Config

Even though the type Config is used in a function declaration.

What is the underlying problem?

Answer:

The issue stems from trying to import only a specific type from a package. In Go, it is not possible to import specific elements from a package. When importing a package, you are essentially importing its entire contents.

In this case, since the package where the Config type is defined is named config, importing it will make its types and other identifiers available under the config namespace. For instance, to use Config, it must be referenced as config.Config.

Therefore, to resolve the problem, one of the following solutions can be employed:

  • Rename the config variable: Since in otherFile.go there is a variable named config, which shadows the imported package, it should be renamed to avoid conflicts.
  • Reference Config using the qualified name: If renaming is not an option, then the type Config can still be used by referencing it with its qualified name, which would be config.Config.

Das obige ist der detaillierte Inhalt vonWarum erhalte ich beim Importieren eines bestimmten Typs in Go die Fehlermeldungen „Importiert und nicht verwendet' und „Undefiniert'?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Neueste Artikel des Autors
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage