[Go] gocron源码阅读-空接口类型interface{}

Posted taoshihan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Go] gocron源码阅读-空接口类型interface{}相关的知识,希望对你有一定的参考价值。

gocron源代码中的Action那个地方,就是个空接口类型Action interface{},可以传递任意类型进去,这里是传了个函数进去

    command := cli.Command{
        Name:   "web",
        Usage:  "run web server",
        Action: runWeb,
        Flags:  flags,
    }

 


接口是合约,任何类型只要实现了接口中的方法,那么就可以认为实现了这个接口。对于没有方法的接口interface{}类型,可以看做所有的类型都实现了这个接口,因此可以作为传递参数时传递任意类型。
下面的代码声明a是空接口,因此任何类型的数据都可以存进去

    var a interface{}
    a = 1
    fmt.Println(a)
    a = "taoshihan"
    fmt.Println(a)
    a = User{Name: "taoshihan"}
    fmt.Println(a)

 

作为函数传参的时候也是可以的,但是当作为返回类型时,有时要进行类型断言,把类型转回来才能赋值给别的变量

func test1(str string) interface{} {
    return str
}
    var b string
    b = test1("taoshihan").(string)
    fmt.Println(b)

完整源码:

package main

import "fmt"

type User struct {
    Name string
}

//空接口作为传参
func test(a interface{}) {
    //可以用这个判断类型
    switch a.(type) {
    case string:
        fmt.Println(a)
    }
}

//空接口作为返回
func test1(str string) interface{} {
    return str
}
func main() {
    //任何类型都能存进去
    var a interface{}
    a = 1
    fmt.Println(a)
    a = "taoshihan"
    fmt.Println(a)
    a = User{Name: "taoshihan"}
    fmt.Println(a)

    //空接口作为参数
    test("taoshihan")
    //这里要进行类型断言,把空接口转回string
    var b string
    b = test1("taoshihan").(string)
    fmt.Println(b)
}

 

以上是关于[Go] gocron源码阅读-空接口类型interface{}的主要内容,如果未能解决你的问题,请参考以下文章

[Go] gocron源码阅读-go语言的结构体

[日常] gocron源码阅读-使用go mod管理依赖源码启动gocron

[Go] gocron源码阅读-通过第三方cli包实现命令行参数获取和管理

[Go] gocron源码阅读-groutine与channel应用到信号捕获

go源码阅读——type.go

go源码阅读——type.go