0%

for

Go简洁得只有一种循环结构:for 循环
对,Go并没有while!
你一定很好奇怎么实现类似while (true)这样的死循环?
先看看Go中标准的for语句规格:

1
2
3
for i := 0; i < 10; i++ {
sum += i
}

跟c很像,但是有两个地方需要注意:

阅读全文 »

官方解析:

每个 Go 程序都是由包组成的。
程序运行的入口是包 main

关于包,Go有一种便捷的写法:

1
2
3
4
5
6
7
import "fmt"
import "math"
// 圆括号组合的写法
import (
"fmt"
"math"
)
阅读全文 »

point sb in the direction of..(指引某人去…的方向)

Could you point me in the direction of the library?

be around the corner(在附近)

The shop where I often shop is around the corner.


A:Excuse me,I’m lost. Could you point me in the direction of Bridge Street,please?
不好意思,我迷路了,可以麻烦你告诉我去大桥街大路吗?

阅读全文 »

入门示例

Go的官网支持直接在线编写代码,即时运行查看结果。入门的标准起手式示例代码:

1
2
3
4
5
6
7
package main  // 声明 main 包,表明当前是一个可执行程序

import "fmt" // 导入内置 fmt 包

func main(){ // main函数,是程序执行的入口
fmt.Println("Hello World!") // 在终端打印 Hello World!
}
阅读全文 »

“包在我身上” consider it done/Your wish is my command


A: I’m sorry,but I can’t go to the movies with you tonight.Because I hava so many chores and must run a few errands.
很抱歉,我今天晚上不能配你看电影,因为我有很多家务要做,还必须跑几个地方办事。

B:That’s okay,I understand. What do you need to do?
没关系,我理解,你需要做什么呢?

阅读全文 »

鉴于…由于 In light of/In view of/Considering/Seeing


A:Hello, I’d like to retuen this woolen sweater.
你好,我想退还这件羊毛衫。

B:Do you have the receipt?
你有收据吗?

A:Yes,it’s in a box.
有,在盒子里

阅读全文 »

通过命令配置

1
npm config set registry https://registry.npm.taobao.org

查看

1
npm config ls -l