Answers:
声明多个变量:
i,s:=0,""
var(i int;s string)
Int From String Conversion :(有限,但有时有帮助)
n:=byte("9"[0])-48 // actual type is uint8
n,_:=strconv.Atoi("9")
和副Versa
s:=string(9+48)
s:=strconv.Itoa(9)
fmt.Sprint
可能节省了个字节strconv.Atoi
,因为您可能fmt
已经导入了。
strconv
只是用来显示普通代码中的高尔夫球代码。
Go编译器具有预定义print
和println
不需要导入fmt的功能,因此代替此。
package main
import."fmt"
func main(){Printf(`Hello World
`)}
你可以写这个。
package main
func main(){print(`Hello World
`)}
请注意,这输出到STDERR。
Go
标签,但是,Go甚至在这里被用于打高尔夫球吗?