GO语言"go/constant"包中"Val"函数的用法及代码示例。
用法:
func Val(x Value) any
Val 返回给定常量的基础值。由于它返回一个接口,因此由调用者将结果类型断言为预期类型。可能的动态返回类型是:
x Kind type of result ----------------------------------------- Bool bool String string Int int64 or *big.Int Float *big.Float or *big.Rat everything else nil
例子:
package main
import (
"fmt"
"go/constant"
"math"
)
func main() {
maxint := constant.MakeInt64(math.MaxInt64)
fmt.Printf("%v\n", constant.Val(maxint))
e := constant.MakeFloat64(math.E)
fmt.Printf("%v\n", constant.Val(e))
b := constant.MakeBool(true)
fmt.Printf("%v\n", constant.Val(b))
b = constant.Make(false)
fmt.Printf("%v\n", constant.Val(b))
}
输出:
9223372036854775807 6121026514868073/2251799813685248 true false
相关用法
- GO Value用法及代码示例
- GO Values.Get用法及代码示例
- GO ValidString用法及代码示例
- GO Values用法及代码示例
- GO Values.Set用法及代码示例
- GO Valid用法及代码示例
- GO ValidRune用法及代码示例
- GO Values.Has用法及代码示例
- GO Values.Del用法及代码示例
- GO Values.Add用法及代码示例
- GO Value.FieldByIndex用法及代码示例
- GO Values.Encode用法及代码示例
- GO Varint用法及代码示例
- GO PutUvarint用法及代码示例
- GO Scanner.Scan用法及代码示例
- GO LeadingZeros32用法及代码示例
- GO NewFromFiles用法及代码示例
- GO Regexp.FindString用法及代码示例
- GO Time.Sub用法及代码示例
- GO Regexp.FindAllIndex用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 Val。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。