web-dev-qa-db-fra.com

Aller le pointeur de chaîne à la chaîne

Est-il possible d'obtenir la valeur de chaîne d'un pointeur vers une chaîne?

J'utilise package goopt pour gérer l'analyse des drapeaux et le package renvoie uniquement la chaîne *. Mais je veux utiliser ces valeurs pour appeler une fonction dans une carte.

Par exemple.

var strPointer = new(string)
*strPointer = "string"

functions := map[string]func() {
    "string": func(){
        fmt.Println("works")
    },
}  

//Do something to get the string value

functions[strPointerValue]()

Vous pouvez voir le problème démontré ici http://play.golang.org/p/1s0-d-GO-L

33
Jared Meyering

Déréférencer le pointeur:

strPointerValue := *strPointer
70
OneOfOne