10

结构体的第三种初始化方法

 2 years ago
source link: https://studygolang.com/articles/35181
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

结构体的第三种初始化方法

xiaojun1195 · 1天之前 · 179 次点击 · 预计阅读时间不到 1 分钟 · 大约8小时之前 开始浏览    
//结构体的第三种初始化方法
package main

import "fmt"
type st struct {
   name string
   age int
}
func (b st) f() {
   fmt.Println(b.name,b.age)
}

func main()  {
   //fmt.Println("hello11")
st{
   name:"he",
   age:5,
}.f()

}

有疑问加站长微信联系(非本文作者)

280

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:701969077


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK