我有解析json config的代码:
import (
"encoding/json"
"os"
"fmt"
)
type Configuration struct {
Users []string
Groups []string
}
type AnotherConfiguration struct {
Names []string
}
file, _ := os.Open("conf.json")
decoder := json.NewDecoder(file)
configuration := Configuration{}
err := decoder.Decode(&configuration)
if err != nil {
fmt.Println("error:", err)
}
fmt.Println(configuration.Users)
如您所见,我有两种不同类型的Configuration和AnotherConfiguration。
我无法弄清楚如何创建一个泛型函数,它会返回任何类型的配置(Configuration或AnotherConfiguration)。
这样的事情:
func make(typename) {
file, _ := os.Open("conf.json")
decoder := json.NewDecoder(file)
configuration := typename{}
err := decoder.Decode(&configuration)
if err != nil {
fmt.Println("error:", err)
}
return configuration
}
答案 0 :(得分:3)
编写解码函数以接受指向要解码的值的指针:
func decode(v interface{}) {
file, _ := os.Open("conf.json")
defer file.Close()
decoder := json.NewDecoder(file)
err := decoder.Decode(v)
if err != nil {
fmt.Println("error:", err)
}
}
这样称呼:
var configuration Configuration
decode(&configuration)
var another AnotherConfiguration
decode(&another)
顺便说一下,我将make
重命名为decode
,以避免影响builtin function。