1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00
2021-10-11 21:41:56 +08:00

34 lines
420 B
Go

package main
import (
"fmt"
"github.com/gogf/gf/v2/frame/g"
)
func main() {
var v g.Var
v.Set("123")
fmt.Println(v.Val())
// 基本类型转换
fmt.Println(v.Int())
fmt.Println(v.Uint())
fmt.Println(v.Float64())
// slice转换
fmt.Println(v.Ints())
fmt.Println(v.Floats())
fmt.Println(v.Strings())
// struct转换
type Score struct {
Value int
}
s := new(Score)
v.Struct(s)
fmt.Println(s)
}