Go language Exercise: interface

Source: Internet
Author: User
Package Mainimport ("FMT") type Run interface {              //The name of this interface is named car more intuitive, in addition to the distance method, can be added after the hundred kilometers acceleration and other methods distance () Float64
Celebrate () Float64}type Bwm struct {speed float64name stringt float64}type Bens struct {speed Float64name stringt float 64}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, "have run:", Run.distance (x), "km in", x.t, "hours") fmt. Println (Y.name, "have run:", Run.distance (y), "km in", y.t, "hours")}

  

Go language Exercise: interface

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.