Golang的格式化输出
# 定义示例类型和变量
type Human struct {
Name string
}var people = Human{Name:"zhangsan"}
普通占位符
占位符说明举例输出
%v相应值的默认格式。Printf("%v", people){zhangsan},
%+v打印结构体时,会添加字段名Printf("%+v", people){Name:zhangsan}
%#v相应值的Go语法表示Printf("#v", people)main.Human{Name:"zhangsan"}
%T相应值的类型的Go语法表示Printf("%T", people)main.Human
%%字面上的百分号,并非值的占位符Printf("%%")%布尔占位符
占位符说明举例输出
%ttrue 或 false。Printf("%t", true)true整数占位符
占位符说明举例输出
%b二进制表示Printf("%b", 5)101
%c相应Unicode码点所表示的字符Printf("%c", 0x4E2D)中
%d十进制表示Printf("%d", 0x12)18
%o八进制表示Printf("%d", 10)12
%q单引号围绕的字符字面值,由Go语法安全地转义 Printf("%q", 0x4E2D)'中'
%x十六进制表示,字母形式为小写 a-fPrintf("%x", 13)d
%X十六进制表示,字母形式为大写 A-FPrintf("%x", 13)D
%UUnicode格式:U+1234,等同于 "U+%04X"Printf("%U", 0x4E2D)U+4E2D浮点数和复数的组成部分(实部和虚部)
占位符说明举例输出
%b无小数部分的,指数为二的幂的科学计数法,
与 strconv.FormatFloat 的 'b' 转换格式一致。例如 -123456p-78
%e科学计数法,例如 -1234.456e+78Printf("%e", 10.2)1.020000e+01
%E科学计数法,例如 -1234.456E+78Printf("%e", 10.2)1.020000E+01
%f有小数点而无指数,例如 123.456Printf("%f", 10.2)10.200000
%g根据情况选择 %e 或 %f 以产生更紧凑的(无末尾的0)输出 Printf("%g", 10.20)10.2
%G根据情况选择 %E 或 %f 以产生更紧凑的(无末尾的0)输出 Printf("%G", 10.20+2i) (10.2+2i)字符串与字节切片
占位符说明举例输出
%s输出字符串表示(string类型或[]byte)Printf("%s", []byte("Go语言"))Go语言
%q双引号围绕的字符串,由Go语法安全地转义Printf("%q", "Go语言")"Go语言"
%x十六进制,小写字母,每字节两个字符Printf("%x", "golang")676f6c616e67
%X十六进制,大写字母,每字节两个字符Printf("%X", "golang")676F6C616E67指针
占位符说明举例输出
%p十六进制表示,前缀 0xPrintf("%p", &people)0x4f57f0其它标记
占位符说明举例输出
+总打印数值的正负号;对于%q(%+q)保证只输出ASCII编码的字符。
Printf("%+q", "中文")"\u4e2d\u6587"
-在右侧而非左侧填充空格(左对齐该区域)
#备用格式:为八进制添加前导 0(%#o)Printf("%#U", '中')U+4E2D
为十六进制添加前导 0x(%#x)或 0X(%#X),为 %p(%#p)去掉前导 0x;
如果可能的话,%q(%#q)会打印原始 (即反引号围绕的)字符串;
如果是可打印字符,%U(%#U)会写出该字符的
Unicode 编码形式(如字符 x 会被打印成 U+0078 'x')。
' '(空格)为数值中省略的正负号留出空白(% d);
以十六进制(% x, % X)打印字符串或切片时,在字节之间用空格隔开
0填充前导的0而非空格;对于数字,这会将填充移到正负号之后
golang没有 '%u' 点位符,若整数为无符号类型,默认就会被打印成无符号的。 宽度与精度的控制格式以Unicode码点为单位。宽度为该数值占用区域的最小宽度;精度为小数点之后的位数。 操作数的类型为int时,宽度与精度都可用字符 '*' 表示。 对于 %g/%G 而言,精度为所有数字的总数,例如:123.45,%.4g 会打印123.5,(而 %6.2f 会打印123.45)。 %e 和 %f 的默认精度为6 对大多数的数值类型而言,宽度为输出的最小字符数,如果必要的话会为已格式化的形式填充空格。 而以字符串类型,精度为输出的最大字符数,如果必要的话会直接截断。 Go的cron定时任务用法
- 安装第三方库robfig/cron:go get -u github.com/robfig/cron
- 每秒钟执行一次
package mainimport (
"log" "github.com/robfig/cron"
)func main() {
i := 0
c := cron.New()
//秒 分 时 日 月 周
spec := "*/1 * * * * *"
c.AddFunc(spec, func() {
i++
log.Println("execute per second", i)
})
c.Start()
select {}
}//其中注意select的用法: golang的select的功能和 select, poll, epoll相似。也可以用for{}实现
Golang中json、map、struct互相转换
json转struct
使用json.Unmarshal时,结构体的每一项必须是导出项(import field)。也就是说结构体的key对应的首字母必须大写。
package mainimport (
"encoding/json"
"fmt"
)type People struct {
Name string `json:"name_tile"`
Age int `json:"age_size"`
}func JsonToStructDemo() {
jsonStr := `
{
"name_tile": "liuXX",
"age_size": 12
}
`
var people People
json.Unmarshal([]byte(jsonStr), &people)
fmt.Println(people)
}func main() {
JsonToStructDemo()
}
struct转json
package testimport (
"testing"
"encoding/json"
)type People struct {
Name string `json:"name_tILE"`
Age int `json:"AGE_SIZE"`
}func TestStructToJson(t *testing.T) {
p := People{
Name: "Liu xx",
Age: 18,
}t.Logf("Person 结构体打印结果:%v", p)//Person 结构体转换为对应的 Json
jsonBytes, err := json.Marshal(p)
if err != nil {
t.Fatal(err)
}
t.Logf("转换为 json 串打印结果:%s", string(jsonBytes))
}
json转map
func TestJsonToMap(t *testing.T) {
jsonStr := `
{
"name": "Liu XX",
"age": 18
}
`
var mapResult map[string]interface{}
//使用 json.Unmarshal(data []byte, v interface{})进行转换,返回 error 信息
if err := json.Unmarshal([]byte(jsonStr), &mapResult);
err != nil {
t.Fatal(err)
}
t.Log(mapResult)
}
map转json
func TestMapToJson(t *testing.T) {
mapInstance := make(map[string]interface{})
mapInstance["Name"] = "Liu xx"
mapInstance["Age"] = 18
mapInstance["Address"] = "广东 深圳"jsonStr, err := json.Marshal(mapInstance)if err != nil {
t.Fatal(err)
}t.Logf("TestMapToJson 得到 json 字符串内容:%s", jsonStr)
}
【Golang语言记录】map转struct
map转换struct要用第三方库提供的方法:$ go get github.com/goinggo/mapstructure
func TestMapToStruct(t *testing.T) {
mapInstance := make(map[string]interface{})
mapInstance["Name"] = "liang637210"
mapInstance["Age"] = 28var people People
//将 map 转换为指定的结构体
if err := mapstructure.Decode(mapInstance, &people);
err != nil {
t.Fatal(err)
}
t.Logf("map2struct后得到的 struct 内容为:%v", people)
}
struct转map
type User struct {
Id int `json:"id"`
Username string `json:"username"`
Password string `json:"password"`
}func StructToMap(obj interface{}) map[string]interface{} {
t := reflect.TypeOf(obj)
v := reflect.ValueOf(obj)var data = https://www.it610.com/article/make(map[string]interface{})
for i := 0;
i < t.NumField();
i++ {
data[t.Field(i).Name] = v.Field(i).Interface()
}
return data
}func TestStructToMap(t *testing.T) {
user := User{5,"zhangsan", "password"}
data := StructToMap(user)
t.Logf("struct2map得到的map内容为:%v", data)
}
Go数学运算随机数
package mainimport(
"fmt"
"math/rand"
)func main(){
fmt.Println("My random number is",rand.Intn(200))
}
运行上面的代码就会发现每次返回的随机数是不变的。因为运行环境是没有发生变化的。
为了每次得到不同的随机数,就需要一个随机数种子。
时间是不停的在发生变化的,利用time.Now().UnixNano()获得一个带纳秒的时间戳,
形成一个新源。然后随机数就可以有想要的效果了。
package mainimport(
"fmt"
"math/rand"
"time"
)func main(){
rand.Seed(time.Now().UnixNano())
fmt.Println("My random number is", rand.Intn(200))
}
推荐阅读
- Go|Docker后端部署详解(Go+Nginx)
- GO|GO,GO,GO!
- Go成长之路|go中判断空字符串、nil和len(t)的用法
- go编译tools
- go grpc安装与使用
- goroutine 调度原理
- Go|Go进阶之路——复杂类型
- Go进阶之路——变量
- Go进阶之路——流程控制语句