好好爱自己!

上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 179 下一页
摘要: 15 2 Is there anyway to create null terminated string in Go? What I'm currently trying is a:="golang\0" but it is showing compilation error: non-octal 阅读全文
posted @ 2021-04-25 18:10 立志做一个好的程序员 阅读(121) 评论(0) 推荐(0)
摘要: 原文: https://studygolang.com/articles/2271 package main import ( "fmt" "strings" "log" ) func main() { reader := strings.NewReader("Go语言学习园地") reader.S 阅读全文
posted @ 2021-04-22 17:39 立志做一个好的程序员 阅读(4007) 评论(0) 推荐(0)
摘要: 原文:https://blog.csdn.net/cywosp/article/details/8767327 结合 https://github.com/boltdb/bolt.git boltdb源码看,就能发现它里面就用了fdatasync函数,来确保修改确实成功写入了磁盘。 传统的UNIX实 阅读全文
posted @ 2021-04-22 15:36 立志做一个好的程序员 阅读(210) 评论(0) 推荐(0)
摘要: 问题: I'm not sure what I'm missing but I get a deadlock error. I'm using a buffered channel that I range over after all go routines complete. The chann 阅读全文
posted @ 2021-04-21 15:44 立志做一个好的程序员 阅读(104) 评论(0) 推荐(0)
摘要: 原文:https://www.oldboyedu.com/zuixin_wenzhang/index/id/486.html package main import ( "sync" "log" ) func main() { var wg sync.WaitGroup for i := 0; i 阅读全文
posted @ 2021-04-21 13:53 立志做一个好的程序员 阅读(370) 评论(0) 推荐(0)
摘要: 原文:https://medium.com/@kdnotes/sort-sort-interface-in-golang-1d263d96956d package main import ( "fmt" "sort" //"unicode/utf8" ) type P struct { name s 阅读全文
posted @ 2021-04-20 17:26 立志做一个好的程序员 阅读(225) 评论(0) 推荐(0)
摘要: 转, 原文:https://www.jianshu.com/p/29ac532e7c96 type SizeOfE struct { A byte // 1 C byte // 1 B int64 // 8 } 内存分布图: package main import ( "log" "unsafe" 阅读全文
posted @ 2021-04-19 13:48 立志做一个好的程序员 阅读(246) 评论(0) 推荐(0)
摘要: 原文: https://blog.csdn.net/yzf279533105/article/details/97143100 package main import ( "fmt" "unsafe" "log" ) type Person struct { name string age int 阅读全文
posted @ 2021-04-19 13:24 立志做一个好的程序员 阅读(175) 评论(0) 推荐(0)
摘要: Alignof返回的对齐数是结构体中最大元素所占的内存数,不超过8, 参考:https://studygolang.com/articles/21827 unsafe.Sizeof 和 unsafe.Offsetof 的理解 package main import ( "fmt" "unsafe" 阅读全文
posted @ 2021-04-16 15:49 立志做一个好的程序员 阅读(841) 评论(0) 推荐(0)
摘要: 原文: https://studygolang.com/articles/21827 以下讲解均在64位系统下进行 基础类型大小 typesize/bytes bool 1 intN, uintN, floatN, complexN N/8 int, uint, uintptr 1 *T 1 str 阅读全文
posted @ 2021-04-16 15:29 立志做一个好的程序员 阅读(293) 评论(0) 推荐(0)
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 179 下一页

不断学习创作,与自己快乐相处