报错信息: Emulator: Process finished with exit code 1 Emulator: PANIC: Cannot find AVD system path. Please define ANDROID_SDK_ROOT 解决方法: 1. 删除AVD内所有镜像 2. ...
分类:
移动开发 时间:
2020-03-16 09:18:57
阅读次数:
123
C. Skyscrapers The outskirts of the capital are being actively built up in Berland. The company "Kernel Panic" manages the construction of a residenti ...
分类:
其他好文 时间:
2020-03-13 13:14:32
阅读次数:
47
func main() { f, err := os.OpenFile("debug.log", os.O_RDWR, 0666) if err != nil { panic(err) } go func() { defer f.Write([]byte("2")) for { f.Write([] ...
分类:
其他好文 时间:
2020-03-12 09:18:24
阅读次数:
47
go的异常处理panic/recover Go语言中目前(Go1.12)是没有异常机制,但是使用panic/recover模式来处理错误。 panic可以在任何地方引发,但recover只有在defer调用的函数中有效 ...
分类:
其他好文 时间:
2020-02-28 20:22:43
阅读次数:
41
节点四台:master、node01、node02、harbor 设置系统主机名及host文件解析#hostnamectl set-hostname k8s-master hostnamectl set-hostname k8s-node01 hostnamectl set-hostname k8s ...
分类:
Web程序 时间:
2020-02-28 18:57:56
阅读次数:
134
原文链接 bytes — byte slice 便利操作 该包定义了一些操作 byte slice 的便利操作。因为字符串可以表示为 []byte,因此,bytes 包定义的函数、方法等和 strings 包很类似,所以讲解时会和 strings 包类似甚至可以直接参考。 说明:为了方便,会称呼 [ ...
分类:
其他好文 时间:
2020-02-23 22:29:59
阅读次数:
139
变量和常量是编程中必不可少的部分,也是很好理解的一部分。 标识符与关键字 标识符 在编程语言中标识符就是程序员定义的具有特殊意义的词,比如变量名、常量名、函数名等等。 Go语言中标识符由字母数字和_(下划线)组成,并且只能以字母和_开头。 举几个例子:abc, _, _123, a123。 关键字 ...
分类:
编程语言 时间:
2020-02-18 18:46:39
阅读次数:
68
1. 为什么需要切片,和数组区别? 数组是定长的,切片是变长的 底层是数组存储 声明 var identifier []type 区分数组是[]中没有数字 var arr = [3]int {1, 2, 3} fmt.Println(arr) var sl = []int {1, 2, 3} fmt ...
分类:
其他好文 时间:
2020-01-28 23:27:31
阅读次数:
84
// int64 转字节数组 func IntToHex(num int64) []byte { buf := new(bytes.Buffer) err := binary.Write(buf, binary.BigEndian, num) if err != nil { log.Panic(er ...
分类:
其他好文 时间:
2020-01-22 18:35:11
阅读次数:
82
!无论怎样都不应该在接收端关闭channel,因为在接收端无法判断发送端是否还会向通道中发送元素值 !试图向已经关闭的channel发送数据会导致panic !关闭已经关闭的channel会导致panic https://blog.csdn.net/qq_33296108/article/detai ...
分类:
其他好文 时间:
2020-01-20 14:53:12
阅读次数:
105