Maison > développement back-end > Golang > Pourquoi est-ce que j'obtiens des erreurs « Importé et non utilisé » et « Non défini » lors de l'importation d'un type spécifique dans Go ?

Pourquoi est-ce que j'obtiens des erreurs « Importé et non utilisé » et « Non défini » lors de l'importation d'un type spécifique dans Go ?

Mary-Kate Olsen
Libérer: 2024-11-15 12:03:02
original
286 Les gens l'ont consulté

Why Am I Getting

Import Package and Type

Question:

In the following project structure:

src
|-->config
       |--> config.go
|-->otherPackage
       |--> otherFile.go
|-->main.go
Copier après la connexion

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"
)
Copier après la connexion

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.

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Derniers articles par auteur
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal