bit.Mul32() Golang 中的函数用于查找 x 和 y 的 64 位乘积。此函数的执行时间不取决于输入。要访问此函数,需要在程序中导入 math/bits 包。
句法:
func Mul32(x, y uint32) (hi, lo uint32)
参数:该函数接受两个 uint32 类型的参数,即 x,y。
注: (hi, lo) = x * y
这里,hi 是乘积位的上半部分,lo 是返回的下半部分。
返回值:此函数返回 x 和 y 的64 位乘积。
示例 1:
// Golang program to illustrate
// bits.Mul32() Function
package main
import (
"fmt"
"math/bits"
)
// Main function
func main() {
// Using Mul32() function
hi, lo := bits.Mul32(7, 2)
fmt.Println("64-bit product of x and y : ", hi, lo)
}
输出:
64-bit product of x and y : 0 14
示例 2:
// Golang program to illustrate
// bits.Mul32() Function
package main
import (
"fmt"
"math/bits"
)
// Main function
func main() {
// Using Mul32() function
const a, b = 10, 20
hi, lo := bits.Mul32(a, b)
fmt.Println("Number 1:", a)
fmt.Println("Number 2:", b)
fmt.Println("Upper half:", hi)
fmt.Println("Lower half:", lo)
}
输出:
Number 1: 10
Number 2: 20
Upper half: 0
Lower half: 200