GO语言"math/big"包中"Int.Scan"类型的用法及代码示例。
用法:
func(z *Int) Scan(s fmt.ScanState, ch rune) error
Scan 是 fmt.Scanner 的一个支持例程;它将 z 设置为扫描数字的值。它接受格式'b'(二进制)、'o'(八进制)、'd'(十进制)、'x'(小写十六进制)和'X'(大写十六进制)。
例子:
package main
import (
"fmt"
"log"
"math/big"
)
func main() {
// The Scan function is rarely used directly;
// the fmt package recognizes it as an implementation of fmt.Scanner.
i := new(big.Int)
_, err := fmt.Sscan("18446744073709551617", i)
if err != nil {
log.Println("error scanning value:", err)
} else {
fmt.Println(i)
}
}
输出:
18446744073709551617
相关用法
- GO Int.SetString用法及代码示例
- GO Ints用法及代码示例
- GO Intn用法及代码示例
- GO IntsAreSorted用法及代码示例
- GO Index.Lookup用法及代码示例
- GO IndexByte用法及代码示例
- GO IndexFunc用法及代码示例
- GO IndexAny用法及代码示例
- GO IndexRune用法及代码示例
- GO Index用法及代码示例
- GO Info用法及代码示例
- GO Indent用法及代码示例
- GO Inspect用法及代码示例
- GO Itoa用法及代码示例
- GO IP.IsPrivate用法及代码示例
- GO IsDigit用法及代码示例
- GO IP.Equal用法及代码示例
- GO IsAbs用法及代码示例
- GO IP.IsLinkLocalMulticast用法及代码示例
- GO IsGraphic用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 Int.Scan。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。