1 Star 0 Fork 0

水上清风/golang-exercise

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
logger.go 286 Bytes
一键复制 编辑 原始数据 按行查看 历史
水上清风 提交于 2016-07-28 22:47 . 以前的练习
package main
import "fmt"
type Logger struct {
level int
}
type Y struct {
Logger
Name string
}
func (this *Y) ShowInfo() {
fmt.Println(this.level, this.Name)
}
func NewY(level int, Name string) *Y {
return &Y{level, Name}
}
func main() {
yy := &Y{1, "san"}
yy.SwhoInfo()
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/ssqf_admin/golang-exercise.git
git@gitee.com:ssqf_admin/golang-exercise.git
ssqf_admin
golang-exercise
golang-exercise
master

搜索帮助