本文整理匯總了C#中BigInteger.LeftShift方法的典型用法代碼示例。如果您正苦於以下問題:C# BigInteger.LeftShift方法的具體用法?C# BigInteger.LeftShift怎麽用?C# BigInteger.LeftShift使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類BigInteger
的用法示例。
在下文中一共展示了BigInteger.LeftShift方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: LeftShift_zero_shift_is_this
public void LeftShift_zero_shift_is_this()
{
uint digit1 = 0xC1F0F1CD;
uint digit2 = 0xB38F4F83;
uint digit3 = 0x1234678;
BigInteger x = new BigInteger(1, digit1, digit2, digit3);
BigInteger y = x.LeftShift(0);
Expect(y, SameAs(x));
}
示例2: RightShift_neg_shift_same_as_left_shift
public void RightShift_neg_shift_same_as_left_shift()
{
uint digit1 = 0xC1F0F1CD;
uint digit2 = 0xB38F4F83;
uint digit3 = 0x1234678;
BigInteger x = new BigInteger(1, digit1, digit2, digit3);
BigInteger y = x.RightShift(-40);
BigInteger z = x.LeftShift(40);
Expect(y == z);
}
示例3: LeftShift_zero_is_zero
public void LeftShift_zero_is_zero()
{
BigInteger x = new BigInteger(0);
BigInteger y = x.LeftShift(1000);
Expect(y.IsZero);
}
示例4: LeftShift_pos_whole_digit_shift_adds_zeros_at_end
public void LeftShift_pos_whole_digit_shift_adds_zeros_at_end()
{
uint digit1 = 0xC1F0F1CD;
uint digit2 = 0xB38F4F83;
uint digit3 = 0x1234678;
BigInteger x = new BigInteger(1, digit1, digit2, digit3);
BigInteger y = x.LeftShift(64);
BigInteger w = new BigInteger(1, digit1, digit2, digit3, 0, 0);
Expect(y == w);
}
示例5: LeftShift_pos_small_shift
public void LeftShift_pos_small_shift()
{
uint digit1 = 0xC1F0F1CD;
uint digit2 = 0xB38F4F83;
uint digit3 = 0x1234678;
BigInteger x = new BigInteger(1, digit1, digit2, digit3);
BigInteger y = x.LeftShift(7);
BigInteger w = new BigInteger(1,
digit1>>25,
digit1 << 7 | digit2 >>25,
digit2 << 7 | digit3 >> 25,
digit3 << 7);
Expect(y == w);
}
示例6: LeftShift_pos_big_shift_zero_high_bits
public void LeftShift_pos_big_shift_zero_high_bits()
{
uint digit1 = 0x0000F1CD;
uint digit2 = 0xB38F4F83;
uint digit3 = 0x1234678;
BigInteger x = new BigInteger(1, digit1, digit2, digit3);
BigInteger y = x.LeftShift(7 + 64);
BigInteger w = new BigInteger(1,
digit1 >> 25,
digit1 << 7 | digit2 >> 25,
digit2 << 7 | digit3 >> 25,
digit3 << 7,
0, 0);
Expect(y == w);
}
示例7: LeftShift_neg_big_shift
public void LeftShift_neg_big_shift()
{
uint digit1 = 0xC1F0F1CD;
uint digit2 = 0xB38F4F83;
uint digit3 = 0x1234678;
BigInteger x = new BigInteger(-1, digit1, digit2, digit3);
BigInteger y = x.LeftShift(7 + 64);
BigInteger w = new BigInteger(-1,
digit1 >> 25,
digit1 << 7 | digit2 >> 25,
digit2 << 7 | digit3 >> 25,
digit3 << 7,
0, 0);
Expect(y == w);
}