码迷,mamicode.com
首页 > 其他好文 > 详细

41_接口的嵌入

时间:2019-09-22 01:20:35      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:port   print   ane   类型   inter   学生   fun   调用   pac   

package main

import "fmt"

type Hummaner interface {
	sing() //声明一个方法,并没有实现
}
type Studenter interface {
	Hummaner //匿名字段,嵌入字段
	play()   //声明一个方法,并没有实现
}
type Student struct {
	id   int
	name string
}

//type Techer struct {
//	id   int
//	name string
//}

func (s *Student) sing() {
	fmt.Println("学生在唱歌!!!")
}
func (t *Student) play() {
	fmt.Println("老师在玩耍!!!")
}
func main() {
     var s Studenter//接口类型变量
	var s1 *Student = &Student{1, "赵"}
	s = s1
	//可以调用继承来的接口方法
	s.sing()
	s.play()
}

41_接口的嵌入

标签:port   print   ane   类型   inter   学生   fun   调用   pac   

原文地址:https://www.cnblogs.com/zhaopp/p/11565507.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!