码迷,mamicode.com
首页 > 其他好文 > 详细

go 结构体初始化

时间:2020-06-06 23:27:52      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:func   name   wan   sts   pre   fun   import   指针   package   

package main

import "fmt"

type Dog struct {
	Name string
}

func TestStruct()  {
	// 方式1
	//var dog  Dog
	//dog.Name = "jj"

	// 方式2
	//dog := Dog{Name:"wang"}

	//方式3
	var dog = new(Dog) // 返回的是指针
	dog.Name = "aa"

	fmt.Println(dog)
}

func main()  {

	TestStruct()

}

  

go 结构体初始化

标签:func   name   wan   sts   pre   fun   import   指针   package   

原文地址:https://www.cnblogs.com/php-linux/p/13057521.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!