golang的struct继承例子
2014-12-18 00:18 来源:www.chinab4c.com 作者:golang专家
golang,golang继承,golangstruct,我们在使用beego写代码的时候,经常需要用到json的格式来处理struct,这个时候就可能需要用到继承了。以下是golang的struct继承例子。
package main
import (
"encoding/json"
"fmt"
)
type Content struct {
DefaultConfig map[string]Config
}
type Config struct {
Value string
}
func main() {
content := Content{make(map[string]Config)}
content.DefaultConfig["url"] = Config{Value: "www.google.com"}
result, err := json.MarshalIndent(content, "", " ")
if err != nil {
fmt.Println("Error when MarshalIndeting:", err.Error())
return
}
fmt.Println(string(result))
}
最近更新
常用插件
- ecshop最土财富通网银直连
我们在使用ecshop或者是最土团购程序的时候。常常都可能用到财富通支...
- ecshop整合招商银行php支付
最近有个朋友,他是用ecshop的。为了和招商银行合作,必须开发出基于...
- ecshop2.7.2新版本商品详细页
很早以前在ecshop2.7.1版本的时候,我们做过简单的ecshop商品页面运费查询...
- ecshop 分类筛选被选择效果
ecshop 分类筛选被选择效果,当前分类规格或者品牌选中之后,就能够正...
- ecshop2.7销售返利插件
ecshop2.7销售返利插件 ,这个插件秉承了ecshop早期版本的ecshop返利插件,...