为什么可以键入别名函数并在不进行强制转换的情况下使用它们?


97

在Go中,如果您定义新类型,例如:

type MyInt int

然后,您不能将a传递给MyInt需要int的函数,反之亦然:

func test(i MyInt) {
    //do something with i
}

func main() {
    anInt := 0
    test(anInt) //doesn't work, int is not of type MyInt
}

精细。但是,为什么同样的不适用于功能呢?例如:

type MyFunc func(i int)
func (m MyFunc) Run(i int) {
    m(i)
}

func run(f MyFunc, i int) {
    f.Run(i)
}

func main() {
    var newfunc func(int) //explicit declaration
    newfunc = func(i int) {
        fmt.Println(i)
    }
    run(newfunc, 10) //works just fine, even though types seem to differ
}

现在,我没有抱怨,因为它使我不必像在第一个示例中那样必须显式转换newfunc为type MyFunc。看起来似乎不一致。我敢肯定有充分的理由。谁能启发我?

我问的原因主要是因为我想以这种方式缩短一些相当长的函数类型,但是我想确保这样做是可以预期的并且可以接受的:)


type在Go中比Scala更有用。Scala 只有类型别名,,。
Rick-777

4
现在开始实际具有类型别名github.com/golang/go/issues/18130
Hut8'8

有人可以解释第二个代码段吗?我真的无法获得这些函数的声明
DevX

Answers:


148

事实证明,这是我对Go如何处理类型的一种误解,可以通过阅读规范的相关部分来解决:

http://golang.org/ref/spec#Type_identity

我不知道的相关区别是命名未命名类型。

命名类型是具有名称的类型,例如int,int64,float,string,bool。另外,您使用'type'创建的任何类型都是命名类型。

未命名的类型是诸如[] string,map [string] string,[4] int之类的类型。它们没有名称,只是与它们的结构相对应的描述。

如果比较两个命名类型,则名称必须匹配,以便它们可以互换。如果您比较命名类型和未命名类型,则只要基础表示形式匹配,您就可以进行!

例如,给定以下类型:

type MyInt int
type MyMap map[int]int
type MySlice []int
type MyFunc func(int)

以下是无效的:

var i int = 2
var i2 MyInt = 4
i = i2 //both named (int and MyInt) and names don't match, so invalid

以下很好:

is := make([]int)
m := make(map[int]int)
f := func(i int){}

//OK: comparing named and unnamed type, and underlying representation
//is the same:
func doSlice(input MySlice){...}
doSlice(is)

func doMap(input MyMap){...}
doMap(m)

func doFunc(input MyFunc){...}
doFunc(f)

我有点不知所措,我不早知道,所以我希望能为其他人澄清一下百灵鸟!而且意味着比我最初想像的要少得多的铸造:)


1
您也可以使用is := make(MySlice, 0); m := make(MyMap),这在某些情况下更具可读性。
R2B2

13

问题和答案都非常有启发性。但是,我想提出一个区别,lytnus的答案中尚不明确。

  • 命名类型不同于未命名类型

  • 的变量命名类型是分配给可变无名类型,反之亦然。

  • 不同命名类型的变量不能互相分配。

http://play.golang.org/p/uaYHEnofT9

import (
    "fmt"
    "reflect"
)

type T1 []string
type T2 []string

func main() {
    foo0 := []string{}
    foo1 := T1{}
    foo2 := T2{}
    fmt.Println(reflect.TypeOf(foo0))
    fmt.Println(reflect.TypeOf(foo1))
    fmt.Println(reflect.TypeOf(foo2))

    // Output:
    // []string
    // main.T1
    // main.T2

    // foo0 can be assigned to foo1, vice versa
    foo1 = foo0
    foo0 = foo1

    // foo2 cannot be assigned to foo1
    // prog.go:28: cannot use foo2 (type T2) as type T1 in assignment
    // foo1 = foo2
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.