码迷,mamicode.com
首页 > 编程语言 > 详细

go语言练习:接口

时间:2018-05-18 18:00:39      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:class   fun   练习   str   除了   struct   AC   pre   float   

package main

import (
	"fmt"
)

type Run interface {              //这个接口的名字命名成Car更直观一点,除了distance方法外,后面可以加上百公里加速之类的方法
	distance() float64
    //celebrate() float64 } type Bwm struct { speed float64 name string t float64 } type Bens struct { speed float64 name string t float64 } func (bwm Bwm) distance() float64 { return bwm.speed*bwm.t } func (bens Bens) distance() float64 { return bens.speed*bens.t } func main() { x:=Bwm{100,"bwm",10} y:=Bens{120,"bens",10} fmt.Println(x.name,"has run:",Run.distance(x),"km in",x.t,"hours") fmt.Println(y.name,"has run:",Run.distance(y),"km in",y.t,"hours") }

  

go语言练习:接口

标签:class   fun   练习   str   除了   struct   AC   pre   float   

原文地址:https://www.cnblogs.com/chenadong/p/9057067.html

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