GO语言练习:struct基础练习

fengbohello · · 2072 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

1、代码

2、运行


 

1、代码

 1 package main
 2 
 3 import "fmt"
 4 
 5 type Rect struct {
 6     x, y float64
 7     width, height float64
 8 }
 9 
10 func (r * Rect) Area() float64 {
11     return r.width * r.height
12 }
13 
14 func Init() {
15     rect1 := new(Rect)
16     rect2 := &Rect{}
17     rect3 := &Rect{0, 0, 100, 200}
18     rect4 := &Rect{width : 100, height : 200}
19 
20     ShowRect(rect1)
21     ShowRect(rect2)
22     ShowRect(rect3)
23     ShowRect(rect4)
24 }
25 func NewRect(x, y, width, height float64) * Rect {
26     return &Rect{x, y, width, height}
27 }
28 
29 func ShowRect(rect * Rect) {
30     fmt.Println(rect.x, rect.y, rect.width, rect.height)
31 }
32 
33 func main() {
34     Init()
35     var rect *Rect = NewRect(1.0, 2.0, 3.0, 4.0)
36     ShowRect(rect)
37     fmt.Println("area = ", rect.Area())
38 }

2、运行

$ go run struct.go 
0 0 0 0
0 0 0 0
0 0 100 200
0 0 100 200
1 2 3 4
area =  12

 


有疑问加站长微信联系(非本文作者)

本文来自:博客园

感谢作者:fengbohello

查看原文:GO语言练习:struct基础练习

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

2072 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传