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

go-方法method

时间:2020-07-12 22:10:36      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:str   UNC   gen   main   test   pack   就是   printf   字母   

//方法:函数指定接收者之后就是方法,只有某个具体的类型才能调用
package main
import "fmt"
type people struct {
  name  string
  gender string
}
//go中,约定使用类型首字母小写
 func (p people) dream() {
 fmt.Printf("name :%s", p.name)
 }
 func main() {
 var test = people{
   name:  "test",
   gender: "nan",
 }
 test.dream()
 }
//使用指针修改内容
func (p *people) dream() {
  p.name = "test2"
  fmt.Printf("name :%s", p.name)
}
func main() {
  var test = &people{
?    name:  "test",
?    gender: "nan",
  }
  test.dream()
}

go-方法method

标签:str   UNC   gen   main   test   pack   就是   printf   字母   

原文地址:https://www.cnblogs.com/kylingx/p/13290144.html

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