Go语言接口怎么定义

Go 语言接口

Go 语言提供了另外一种数据类型即接口,它把所有的具有共性的方法定义在一起,任何其他类型只要实现了这些方法就是实现了这个接口。

实例

实例

/* 定义接口 */
type interface_name interface {
   method_name1 [return_type]
   method_name2 [return_type]
   method_name3 [return_type]
   
   method_namen [return_type]
}

/* 定义结构体 */
type struct_name struct {
   /* variables */
}

/* 实现接口方法 */
func (struct_name_variable struct_name) method_name1() [return_type] {
   /* 方法实现 */
}

func (struct_name_variable struct_name) method_namen() [return_type] {
   /* 方法实现*/
}

原创文章,作者:ZVSEJ,如若转载,请注明出处:https://www.beidanyezhu.com/a/29550.html

(0)
ZVSEJ的头像ZVSEJ
上一篇 2025-02-09
下一篇 2025-02-09

相关推荐

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

分享本页
返回顶部