GO语言"math/bits"包中"Div64"函数的用法及代码示例。
用法:
func Div64(hi, lo, y uint64)(quo, rem uint64)
Div64 返回 (hi, lo) 除以 y 的商和余数:quo = (hi, lo)/y, rem = (hi, lo)%y,被除数的上半部分在参数 hi 中,下半部分在参数 lo。 y == 0(除以零)或 y <= hi(商溢出)的 Div64 Panics。
例子:
package main
import (
"fmt"
"math/bits"
)
func main() {
// First number is 0<<64 + 6
n1 := []uint64{0, 6}
// Second number is 0<<64 + 3
n2 := []uint64{0, 3}
// Divide them together.
quo, rem := bits.Div64(n1[0], n1[1], n2[1])
nsum := []uint64{quo, rem}
fmt.Printf("[%v %v] / %v = %v\n", n1[0], n1[1], n2[1], nsum)
// First number is 2<<64 + 9223372036854775808
n1 = []uint64{2, 0x8000000000000000}
// Second number is 0<<64 + 9223372036854775808
n2 = []uint64{0, 0x8000000000000000}
// Divide them together.
quo, rem = bits.Div64(n1[0], n1[1], n2[1])
nsum = []uint64{quo, rem}
fmt.Printf("[%v %v] / %v = %v\n", n1[0], n1[1], n2[1], nsum)
}
输出:
[0 6] / 3 = [2 0] [2 9223372036854775808] / 9223372036854775808 = [5 0]
相关用法
- GO Div32用法及代码示例
- GO Dial用法及代码示例
- GO Dialer用法及代码示例
- GO Dim用法及代码示例
- GO Dir用法及代码示例
- GO DecodeLastRuneInString用法及代码示例
- GO DumpResponse用法及代码示例
- GO DB.QueryRowContext用法及代码示例
- GO Date用法及代码示例
- GO DB.ExecContext用法及代码示例
- GO DB.BeginTx用法及代码示例
- GO Decoder.Token用法及代码示例
- GO Decoder.Decode用法及代码示例
- GO DumpRequest用法及代码示例
- GO Drawer用法及代码示例
- GO Duration.Hours用法及代码示例
- GO Duration.Round用法及代码示例
- GO DecodeRuneInString用法及代码示例
- GO DumpRequestOut用法及代码示例
- GO DecodeRune用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 Div64。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。