标签:www pack post run imp 测试 color int roo
测试例子
package main import ( "fmt" ) func main() { str2 := "hello" data2 := []byte(str2) fmt.Println(data2) str2 = string(data2[:]) fmt.Println(str2) }
测试结果:
[root@localhost ]# go run d.go [104 101 108 108 111] hello
标签:www pack post run imp 测试 color int roo
原文地址:https://www.cnblogs.com/wangjq19920210/p/11579149.html