Go Flow Control

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

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

 


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

本文来自:博客园

感谢作者:tekkaman

查看原文:Go Flow Control

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

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