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

go 方法

时间:2018-01-14 00:55:33      阅读:281      评论:0      收藏:0      [点我收藏+]

标签:pre   test   microsoft   str   strong   div   abc   sts   nbsp   

go 方法

Golang中的任何自定义类型,都可以有方法,而不仅仅是struct。

定义:func (recevier type) methodName(参数列表)(返回值列表){}

  • 方法的访问控制,通过大小写控制
  • 如果一个struct嵌套了另一个匿名结构体,那么这个结构可以直接访问匿名结构体的方法,从而实现了继承。
  • 如果一个struct嵌套了另一个有名结构体,那么这个模式就叫组合。
  • 如果一个struct嵌套了多个匿名结构体,那么这个结构可以直接访问多个匿名结构体的方法,从而实现了多重继承。

样例:

package main

import (
	"fmt"
)

type Int int

func (i *Int)Add(a, b int)  {
	*i =  Int(a + b)
	return 
}

func testInt() {
	var a Int
	a.Add(100, 200)
	fmt.Println(a)
}

func main() {
	testInt()
}

 结构体样例

package main

import (
	"fmt"
)

type Student struct {
	Name string
	Age int
}

func (s *Student) Set(name string, age int) {
	s.Name = name
	s.Age = age
}

func testStudent() {
	var s Student
	s.Set("abc", 100)
	fmt.Println(s)
}

func main() {
	testStudent()
}

 

go 方法

标签:pre   test   microsoft   str   strong   div   abc   sts   nbsp   

原文地址:https://www.cnblogs.com/shhnwangjian/p/8280798.html

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