Go教程

go语言接口做参数示例

本文主要是介绍go语言接口做参数示例,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

    今天给大家说一说go语言接口做参数示例,话不多说直接上代码:

type IUserService interface {

GenId()

}

type UserService struct {

id string

}

func (u *UserService) GenId() {

generateUUID, _ := uuid.GenerateUUID()

u.id = generateUUID

}

func BuildUser(service IUserService) {

service.GenId()

}

func main() {

userService := UserService{}

BuildUser(&userService)

//BuildUser(userService) *UserService实现了IUserService,UserService没有实现IUserService 

println(userService.id)

}

    以上便是go语言接口做参数示例的全部内容,更多内容可关注慕课网其他文章~

这篇关于go语言接口做参数示例的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!