
Golang
文章平均质量分 88
分享Golang学习经验,记录学习过程!
Muti-Agent
优快云博客专家,华为云享专家,HDZ核心组成员,Linux中国翻译组成员,ACM退役选手,分享 Linux、C/C 、Go、算法编程和面试经验,与大家一起成长,把握青春、不负韶华!
展开
-
Golang make和new的区别详解
Golang make和new的区别详解原创 2020-12-26 15:28:18 · 9495 阅读 · 7 评论 -
Golang 切片(slice)扩容机制源码剖析
我们知道 Golang 切片(slice) 在容量不足的情况下会进行扩容,扩容的原理是怎样的呢?是不是每次扩一倍?下面我们结合源码来告诉你答案。一、源码Version : go1.15.6 src/runtime/slice.go//go1.15.6 源码 src/runtime/slice.gofunc growslice(et *_type, old slice, cap int) slice { //省略部分判断代码 //计算扩容部分 //其中,cap : 所需容量.原创 2020-12-20 20:43:36 · 2918 阅读 · 0 评论 -
Golang 编码和解析Json
目录一、编码 :func Marshal二、解析:func Unmarshal在 Golangencoding/json 包中提供了两个函数 Marshal 和Unmarshal,分别用来编码和解码(解析)Json 格式的数据。一、编码 :func Marshalfunc Marshal(v interface{}) ([]byte, error)作用:返回 v 编码后的 Json 数据,注意是 []byte,例如:package mainimport ( "...原创 2020-11-28 22:39:55 · 2065 阅读 · 0 评论 -
Golang 字符编码、UTF-8、Unicode之间的关系
Unicode 编码 UTF-8编码原创 2020-10-31 14:33:29 · 3761 阅读 · 0 评论 -
Golang strings 包常用字符串操作函数
在编写代码的时候最常用到的就是字符串了,本篇文章将结合实例对常用的字符串操作函数进行介绍。1.原创 2020-10-28 22:04:20 · 4277 阅读 · 5 评论 -
Golang 模板(text/template) (二)
三、高级模板:条件语句/函数/循环语句等条件语句:import ( "os" "text/template")type student struct { Name string Like string}func main() { Joy := student{"Joy", "Ping pong"} strTemplate := "My name is {{.Name}} and I like to play {{if eq .Like `Ping pong`}}{...原创 2020-10-18 17:29:10 · 2821 阅读 · 0 评论 -
Golang 模板(text/template) (一)
模板使用步骤:(1)定义模板;(2)解析模板;(3)数据驱动模板;原创 2020-10-13 22:44:48 · 3345 阅读 · 0 评论 -
Linux 中 Golang 的安装和环境配置
目录1. 安装 Golang2. 配置环境3. 创建工作目录4. 编写第一个 Golang 程序5. 参考文献本篇文章主要总结下 Golong 的安装、环境配置以及编写第一个程序 HelloWorld.go。1. 安装 Golang测试的系统环境:CentOS Linux release 8.0.1905 (Core)依次执行如下命令:下载安装包和将安装包解压到 /usr/local 目录下;[root@192 ~]# wget https://s...原创 2020-09-15 22:05:09 · 5450 阅读 · 0 评论 -
Golong 字符串多行显示
Golong 字符串多行显示原创 2020-09-14 22:06:04 · 4754 阅读 · 2 评论