标签:style blog color 文件 数据 for 代码 div
1.0 进入项目创建文件夹
cd $GOPATH/src
2.0 创建项目
mkdir localeasy
3.0 创建go文件
touch helloworld.go
4.0 打开并编辑
open helloworld.go
helloworld.go中的代码
package localeasy//(以包为单位进行封装类似oc中的类) func Sqrt(x float64) float64 { /*func:申明方法的关键字 *Sqrt(x float64) float64 *Sqrt:objectc中的方法名 *x float64:方法的形参-》数据结构类似OC中的变量声明只不过前面是变量名 后面是数据类型 *float64:OC中的返回值类型 */ z := 0.0 for i := 0; i < 1000; i++ { z -= (z*z - x) / (2 * x) } return z }
标签:style blog color 文件 数据 for 代码 div
原文地址:http://www.cnblogs.com/go-ios/p/3871666.html