1、Ctrl+Alt+Left/Righ… Read more
分类: 开发语言
go 多线程往一个全局chain通道写入,比向一个全局变量写入,可以避免竞争。
多线程操作时: 单单读,不会产生竞争。 … Read more
go 值传递和地址传递
一、值传递 1.定义: 使用变量、常量、… Read more
new 和 make 的区别
make 和 new 都是用来申请内存地… Read more
方法
go 函数详解
https://blog.csdn.ne… Read more
go 函数类型
函数类型 函数的名字表示一个地址,函数在… Read more
go 函数返回值的几种形式
(1) 单个返回值 传统写法要求:返回值… Read more
二维切片
您的代码中存在几个问题,特别是关于如何声… Read more
go 类型*[] 不支持索引
错误解释: 在 Go 语言中,*[]T … Read more