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

Go Flow Control

时间:2015-02-05 21:44:41      阅读:378      评论:0      收藏:0      [点我收藏+]

标签:

Go Flow Control

1、for没有(),必须有{}。

  技术分享

2、for的前后表达式可以为空。

  技术分享

3、没有while,for即是while。

  技术分享

4、无穷循环。

  技术分享

5、if没有(),必须有{}。

  技术分享

6、if临时变量。

  Like for, the if statement can start with a short statement to execute before the condition.

  Variables declared by the statement are only in scope until the end of the if.

  技术分享

7、if临时变量可以在else中使用。

  技术分享

8、switch会自动break。

  技术分享

9、case中表达式可被计算。

  技术分享

10、Switch without a condition is the same as switch true.

  技术分享

11、延迟执行。

  A defer statement defers the execution of a function until the surrounding function returns.

  The deferred call‘s arguments are evaluated immediately, but the function call is not executed until the surrounding function returns.

  技术分享

12、Deferred function calls are pushed onto a stack.

  技术分享

  输出是 9 8 7 6 ...

参考:https://tour.golang.org/flowcontrol/1

 

Go Flow Control

标签:

原文地址:http://www.cnblogs.com/tekkaman/p/4275988.html

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