摘要:
ChanBase 管道base, 判断管道是否关闭, 优雅关闭管道 fmt.Println(<-c)会消耗里面的内容吗 # 1 _, ok := <-c fmt.Println(ok) # 2 select { case _,ok := <-c: fmt.Println(" ", ok) } 上面两 阅读全文
摘要:
ReflectBase overview Package reflect implements run-time reflection, allowing a program to manipulate objects with arbitrary types. The typical use is 阅读全文
摘要:
GolandQuick编辑器快捷键 快捷键 作用 ctrl + n 导航到类名 ·ctrl + shift +n 编辑器全局查找文件或者文件夹 ctrl + e 打开最近的文件夹或者文件 ctrl + shift + i 查看源码 ctrl + shift + m 重构表达式为函数,光标在函数末尾 阅读全文
摘要:
GitStand git思想 远程的分支只是远程的,本地的是本地的,本地的master只是个代号,通俗都是对应的 切换分支时候,重点:文件夹下面得到文件也会变化 常用命令 git fetch --all 远程分支同步 git checkout -b 本地分支名x origin/远程分支名x 拉取远程 阅读全文
摘要:
test 阅读全文