zoukankan      html  css  js  c++  java
  • Go Flow Control

    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

  • 相关阅读:
    MySQL修改root密码的多种方法
    AES和RSA算法的demo代码
    网卡
    Socket
    Opentracing 链路追踪
    TCP连接三次握手
    MongoDB 使用B树
    MySQL的DDL、DML、DCL
    MySQL 数据同步
    SSO(单点登录)与CAS
  • 原文地址:https://www.cnblogs.com/tekkaman/p/4275988.html
Copyright © 2011-2022 走看看