GO语言"math/bits"包中"Add32"函数的用法及代码示例。
用法:
func Add32(x, y, carry uint32)(sum, carryOut uint32)
Add32 返回 x、y 和进位的总和:sum = x + y + 进位。进位输入必须为 0 或 1;否则行为未定义。进位输出保证为 0 或 1。
此函数的执行时间不依赖于输入。
例子:
package main
import (
"fmt"
"math/bits"
)
func main() {
// First number is 33<<32 + 12
n1 := []uint32{33, 12}
// Second number is 21<<32 + 23
n2 := []uint32{21, 23}
// Add them together without producing carry.
d1, carry := bits.Add32(n1[1], n2[1], 0)
d0, _ := bits.Add32(n1[0], n2[0], carry)
nsum := []uint32{d0, d1}
fmt.Printf("%v + %v = %v (carry bit was %v)\n", n1, n2, nsum, carry)
// First number is 1<<32 + 2147483648
n1 = []uint32{1, 0x80000000}
// Second number is 1<<32 + 2147483648
n2 = []uint32{1, 0x80000000}
// Add them together producing carry.
d1, carry = bits.Add32(n1[1], n2[1], 0)
d0, _ = bits.Add32(n1[0], n2[0], carry)
nsum = []uint32{d0, d1}
fmt.Printf("%v + %v = %v (carry bit was %v)\n", n1, n2, nsum, carry)
}
输出:
[33 12] + [21 23] = [54 35] (carry bit was 0) [1 2147483648] + [1 2147483648] = [3 0] (carry bit was 1)
相关用法
- GO Add64用法及代码示例
- GO AppendRune用法及代码示例
- GO Atan2用法及代码示例
- GO AppendQuoteRune用法及代码示例
- GO Atan用法及代码示例
- GO AppendInt用法及代码示例
- GO Acos用法及代码示例
- GO Acosh用法及代码示例
- GO AppendBool用法及代码示例
- GO Asinh用法及代码示例
- GO As用法及代码示例
- GO Asin用法及代码示例
- GO Atoi用法及代码示例
- GO AppendQuoteToASCII用法及代码示例
- GO AppendFloat用法及代码示例
- GO AppendQuoteRuneToASCII用法及代码示例
- GO After用法及代码示例
- GO AppendQuote用法及代码示例
- GO AppendUint用法及代码示例
- GO Atanh用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 Add32。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。