上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 35 下一页
摘要: //方法:函数指定接收者之后就是方法,只有某个具体的类型才能调用 package main import "fmt" type people struct { name string gender string } //go中,约定使用类型首字母小写 func (p people) dream() 阅读全文
posted @ 2020-07-12 21:54 kylingx 阅读(134) 评论(0) 推荐(0) 编辑
摘要: #参考链接 https://www.cnblogs.com/binghe001/p/13285890.html https://github.com/sunshinelyz/ABTestingGateway 阅读全文
posted @ 2020-07-12 00:18 kylingx 阅读(192) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" ) func main() { a := 1 b := 2 defer func() { err := recover() //recover只能放在defer之后使用 fmt.Println(err) }() //匿名函数 swap(a, b 阅读全文
posted @ 2020-07-12 00:15 kylingx 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 指针 指针:带类型 类型指针,允许对这个指针类型的数据进行修改,传递数据可以直接使用指针,而无须拷贝数据,类型指针不能进行偏移和运算。 地址:内存地址,字节描述的内存地址 '&':表示取内存地址操作 ptr := &v // v 的类型为 T package main import ( "fmt" 阅读全文
posted @ 2020-07-11 23:40 kylingx 阅读(111) 评论(0) 推荐(0) 编辑
摘要: #demo1: func main() { var a = [3]int{1, 2, 3} var b = []int{1, 2, 3} fmt.Println(a, b) //[1 2 3] [1 2 3] fmt.Printf("a:%T b:%T\n", a, b) // a:[3]int b 阅读全文
posted @ 2020-07-10 21:51 kylingx 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 所述ngx_stream_ssl_module模块(1.9.0)提供了一种用于流代理服务器工作与SSL / TLS协议的必要的支持。 默认情况下未构建此模块,应使用--with-stream_ssl_module 配置参数启用它 。 #配置示例 为了减少处理器负载,建议 将工作进程数设置为 等于处理 阅读全文
posted @ 2020-07-10 16:07 kylingx 阅读(2737) 评论(0) 推荐(0) 编辑
摘要: 参考链接 https://www.cnblogs.com/itzgr/p/13271580.html 阅读全文
posted @ 2020-07-10 14:34 kylingx 阅读(336) 评论(0) 推荐(0) 编辑
摘要: package main import ( "flag" "fmt" ) //**Demo1**: func main() { t1 := flag.Int("w", 0, "demo test") //int变量 t2 := flag.String("a", "Hello", "demo test 阅读全文
posted @ 2020-07-10 14:22 kylingx 阅读(155) 评论(0) 推荐(0) 编辑
摘要: go语言有一个获取远程包的工具就是go get,目前go get支持多数开源社区(例如:GitHub、googlecode、bitbucket、Launchpad) 这个命令在内部实际上分成了两步操作:第一步是下载源码包,第二步是执行go install go get github.com/asta 阅读全文
posted @ 2020-07-09 19:21 kylingx 阅读(483) 评论(0) 推荐(0) 编辑
摘要: gossh #单机模式 1.远程运行命令 gossh [-t cmd] -h hostname -P port(default 22) -u username(default root) -p passswrod [-f] "command" gossh -h 192.168.15.6 -t cmd 阅读全文
posted @ 2020-07-08 16:20 kylingx 阅读(848) 评论(1) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 35 下一页