您的位置:首页 > 编程语言 > Go语言

Go语言中普通函数与方法的区别

2014-04-03 10:35 441 查看
1.对于普通函数,接收者为值类型时,不能将指针类型的数据直接传递,反之亦然。

2.对于方法(如struct的方法),接收者为值类型时,可以直接用指针类型的变量调用方法,反过来同样也可以。

以下为简单示例:

package structTest

//普通函数与方法的区别(在接收者分别为值类型和指针类型的时候)
//Date:2014-4-3 10:00:07

import (
"fmt"
)

func StructTest06Base() {
structTest0601()
structTest0602()
}

//1.普通函数
//接收值类型参数的函数
func valueIntTest(a int) int {
return a + 10
}

//接收指针类型参数的函数
func pointerIntTest(a *int) int {
return *a + 10
}

func structTest0601() {
a := 2
fmt.Println("valueIntTest:", valueIntTest(a))
//函数的参数为值类型,则不能直接将指针作为参数传递
//fmt.Println("valueIntTest:", valueIntTest(&a))
//compile error: cannot use &a (type *int) as type int in function argument

b := 5
fmt.Println("pointerIntTest:", pointerIntTest(&b))
//同样,当函数的参数为指针类型时,也不能直接将值类型作为参数传递
//fmt.Println("pointerIntTest:", pointerIntTest(b))
//compile error:cannot use b (type int) as type *int in function argument
}

//2.方法
type PersonD struct {
id   int
name string
}

//接收者为值类型
func (p PersonD) valueShowName() {
fmt.Println(p.name)
}

//接收者为指针类型
func (p *PersonD) pointShowName() {
fmt.Println(p.name)
}

func structTest0602() {
//值类型调用方法
personValue := PersonD{101, "Will Smith"}
personValue.valueShowName()
personValue.pointShowName()

//指针类型调用方法
personPointer := &PersonD{102, "Paul Tony"}
personPointer.valueShowName()
personPointer.pointShowName()

//与普通函数不同,接收者为指针类型和值类型的方法,指针类型和值类型的变量均可相互调用
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息