go 语言接口定义简叙

package main
import "fmt"
/**
 * 定义接口
 * type interface_name interface{
 * 		method_name1 [return_type]
 * 		method_name2 [return_type]
 * 		...
 * 		method_namen [return_type]
 * }
 * 定义结构体
 * type struct_name struct{
 * 		
 * }
 *
 * 实现接口方式
 * func (struct_name_variable struct_name) method_name1() [return_type]{
 * 	方法实现
 * }
 * func (struct_name_variable struct_name) method_namen() [return_type]{
 * 	方法实现
 * }
 */
func main(){
	//声明接口
	var phone Phone

	//添加结构体
	phone = new(NokiaPhone)
	//执行方式
	phone.call()


	//添加结构体
	phone = new(IPhone)
	//执行方式
	phone.call()
}

//手机接口
type Phone interface {
	call()
}

//结构体1
type NokiaPhone struct{}
//结构体2
type IPhone struct{}

//实现接口方式
func (nokiaPhone NokiaPhone) call(){
	fmt.Println("I am Nokia,I can call you")
}

func (iPhone IPhone) call(){
	fmt.Println("I am iphone,I can call you")
}

输出

I am Nokia,I can call you
I am iphone,I can call you
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值