摘要:
【Defer 声明的设计理念】 Adefer statementpushes a function call onto a list. The list of saved calls is executed after the surrounding function returns. Defer... 阅读全文
摘要:
【Go Flow Control】1、for没有(),必须有{}。 2、for的前后表达式可以为空。 3、没有while,for即是while。 4、无穷循环。 5、if没有(),必须有{}。 6、if临时变量。 Likefor, theifstatement can start wit... 阅读全文
摘要:
【Unity加载二进制数据】 The first step is to save your binary data file with the ".bytes" extension.unitywill treat this file as aTextAsset. As a TextAsset th... 阅读全文
摘要:
【Go Packages、Variables、functions】1、定义包名。 2、引入Package。 3、定义导出的变量。首字母必须大写。 4、函数。Notice that the type comesafterthe variable name. 5、参数缩写。 6、函数可以返回任... 阅读全文