技术专栏 国家或地区电话代码 国家或地区电话代码 Countries and Regions 国家或地区 国际域名缩写 电话代码 时差 China 中国 CN 86 0 Hongkong 中国香港 HK 852 0 Macao 中国澳门 MO 853 0 Taiwan 中国台湾省 TW 886 0 Angola 安哥拉 AO … Mr.Li 2022年4月29日 0 0 4.01 k
技术专栏 【Go】生成随机数random 程序代码如下: package main import ( "fmt" "math/rand" "time" ) func main() … Mr.Li 2022年4月24日 0 0 811
技术专栏 Go 类型断言 .(type) 关键词:interface,switch 类型断言 x.(T) 其实就是判断 T 是否实现了 x 接口,如果实现了,就把 x 接口类型具体化为 T 类型;而 x.(type) 这种方式的类型断言,就只能和 switch 搭配使用,因为它需要和多种类型比较判断,以确定其具体类型。 x.(type) 使用示例: f … Mr.Li 2022年4月24日 0 0 745
技术专栏 GO语言中的单引号、双引号和反引号 1.单引号 单引号在go语言中表示golang中的rune(int32)类型,单引号里面是单个字符,对应的值为改字符的ASCII值。 func main() { a := 'A' fmt.Println(a) } 输出: … Mr.Li 2022年4月24日 0 0 1.03 k
服务器 file_put_contents(): Only 0 of 23634 bytes written, possibly out of free disk space,磁盘空间不足 访问网站系统报错: file_put_contents(): Only 0 of 23634 bytes written, possibly out of free disk space。 意 … Mr.Li 2022年4月18日 0 0 2.94 k
技术专栏 python获取当前时间的用法 首先看下,datetime的使用 import datetime >>> print datetime.datetime.now() 2017-07-15 15:01:24.619000 格式化时间 >>> print datetime.datetime.now().strf … Mr.Li 2022年4月7日 0 0 641