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

GO语言练习:组合的用法

时间:2015-07-06 22:58:30      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

1、代码

2、运行


 

1、代码

 1 package main
 2 
 3 import "fmt"
 4 
 5 type Base struct {
 6     Name string
 7 }
 8 
 9 func (base * Base) Foo() {
10     fmt.Println("Base Foo : ", base.Name)
11 }
12 
13 func (base * Base) Bar() {
14     fmt.Println("Base Bar : ", base.Name)
15 }
16 
17 type Foo struct {
18     Base
19     a int 
20 }
21 
22 func (foo * Foo) Bar() {
23     foo.Base.Bar()
24     fmt.Println("\tFoo Bar : ", foo.Name)
25 }
26 
27 func main() {
28     var str string = "hello world"
29 
30     base := &Base{str}
31     base.Foo()
32 
33     str = "Ni hao"
34     foo := &Foo{Base{str}, 0}
35     foo.Bar()
36     foo.Foo()
37 }

2、运行

$ go run combination.go 
Base Foo :  hello world
Base Bar :  Ni hao
    Foo Bar :  Ni hao
Base Foo :  Ni hao

 

GO语言练习:组合的用法

标签:

原文地址:http://www.cnblogs.com/fengbohello/p/4625467.html

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