本文整理汇总了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);
}