2022年8月21日
摘要: package go_tests import ( "bytes" "fmt" "testing" ) // 值类型与引用类型 func TestT55(t *testing.T) { a := 123 b := a // 指向不同的内存地址 fmt.Printf("a: %d, %p \n", a 阅读全文
posted @ 2022-08-21 11:04 江湖乄夜雨 阅读(50) 评论(0) 推荐(0) 编辑