BigInteger.RightShift(BigInteger, Int32) Оператор
Определение
Сдвигает значение BigInteger на указанное число битов вправо.Shifts a BigInteger value a specified number of bits to the right.
public:
static System::Numerics::BigInteger operator >>(System::Numerics::BigInteger value, int shift);
public static System.Numerics.BigInteger operator >> (System.Numerics.BigInteger value, int shift);
static member ( >>> ) : System.Numerics.BigInteger * int -> System.Numerics.BigInteger
Public Shared Operator >> (value As BigInteger, shift As Integer) As BigInteger
Параметры
- value
- BigInteger
Значение, для которого необходимо выполнить побитовый сдвиг.The value whose bits are to be shifted.
- shift
- Int32
Количество битов, на которое необходимо сдвинуть value
вправо.The number of bits to shift value
to the right.
Возвращаемое значение
Значение, которое было сдвинуто вправо на указанное число бит.A value that has been shifted to the right by the specified number of bits.
Комментарии
Метод RightShift определяет операцию побитового оператора сдвига вправо для BigInteger значений.The RightShift method defines the operation of the bitwise right-shift operator for BigInteger values. Он включает следующий код:It enables code such as the following:
var number = BigInteger.Parse("-9047321678449816249999312055");
Console.WriteLine("Shifting {0} right by:", number);
for (int ctr = 0; ctr <= 16; ctr++) {
BigInteger newNumber = number >> ctr;
Console.WriteLine(" {0,2} bits: {1,35} {2,30}", ctr, newNumber, newNumber.ToString("X"));
}
// The example displays the following output:
// Shifting -9047321678449816249999312055 right by:
// 0 bits: -9047321678449816249999312055 E2C43B1D0D6F07D2CC1FBB49
// 1 bits: -4523660839224908124999656028 F1621D8E86B783E9660FDDA4
// 2 bits: -2261830419612454062499828014 8B10EC7435BC1F4B307EED2
// 3 bits: -1130915209806227031249914007 C588763A1ADE0FA5983F769
// 4 bits: -565457604903113515624957004 E2C43B1D0D6F07D2CC1FBB4
// 5 bits: -282728802451556757812478502 F1621D8E86B783E9660FDDA
// 6 bits: -141364401225778378906239251 8B10EC7435BC1F4B307EED
// 7 bits: -70682200612889189453119626 C588763A1ADE0FA5983F76
// 8 bits: -35341100306444594726559813 E2C43B1D0D6F07D2CC1FBB
// 9 bits: -17670550153222297363279907 F1621D8E86B783E9660FDD
// 10 bits: -8835275076611148681639954 8B10EC7435BC1F4B307EE
// 11 bits: -4417637538305574340819977 C588763A1ADE0FA5983F7
// 12 bits: -2208818769152787170409989 E2C43B1D0D6F07D2CC1FB
// 13 bits: -1104409384576393585204995 F1621D8E86B783E9660FD
// 14 bits: -552204692288196792602498 8B10EC7435BC1F4B307E
// 15 bits: -276102346144098396301249 C588763A1ADE0FA5983F
// 16 bits: -138051173072049198150625 E2C43B1D0D6F07D2CC1F
Dim number As BigInteger = BigInteger.Parse("-9047321678449816249999312055")
Console.WriteLine("Shifting {0} right by:", number)
For ctr As Integer = 0 To 16
Dim newNumber As BigInteger = number >> ctr
Console.WriteLine(" {0,2} bits: {1,35} {2,30}", ctr, newNumber, newNumber.ToString("X"))
Next
' The example displays the following output:
' Shifting -9047321678449816249999312055 right by:
' 0 bits: -9047321678449816249999312055 E2C43B1D0D6F07D2CC1FBB49
' 1 bits: -4523660839224908124999656028 F1621D8E86B783E9660FDDA4
' 2 bits: -2261830419612454062499828014 8B10EC7435BC1F4B307EED2
' 3 bits: -1130915209806227031249914007 C588763A1ADE0FA5983F769
' 4 bits: -565457604903113515624957004 E2C43B1D0D6F07D2CC1FBB4
' 5 bits: -282728802451556757812478502 F1621D8E86B783E9660FDDA
' 6 bits: -141364401225778378906239251 8B10EC7435BC1F4B307EED
' 7 bits: -70682200612889189453119626 C588763A1ADE0FA5983F76
' 8 bits: -35341100306444594726559813 E2C43B1D0D6F07D2CC1FBB
' 9 bits: -17670550153222297363279907 F1621D8E86B783E9660FDD
' 10 bits: -8835275076611148681639954 8B10EC7435BC1F4B307EE
' 11 bits: -4417637538305574340819977 C588763A1ADE0FA5983F7
' 12 bits: -2208818769152787170409989 E2C43B1D0D6F07D2CC1FB
' 13 bits: -1104409384576393585204995 F1621D8E86B783E9660FD
' 14 bits: -552204692288196792602498 8B10EC7435BC1F4B307E
' 15 bits: -276102346144098396301249 C588763A1ADE0FA5983F
' 16 bits: -138051173072049198150625 E2C43B1D0D6F07D2CC1F
Языки, не поддерживающие пользовательские операторы, могут выполнять побитовую операцию сдвига вправо, выделив value
BigInteger.Pow(2, shift)
и вычитая 1 раз shift
для отрицательных значений.Languages that do not support custom operators can perform a bitwise right-shift operation by dividing value
by BigInteger.Pow(2, shift)
and subtracting 1 times shift
for negative values. В следующем примере показано, что результаты идентичны результатам использования этого оператора.The following example shows that the results are identical to the results of using this operator.
var number = BigInteger.Parse("-9047321678449816249999312055");
Console.WriteLine("Shifting {0} right by:", number);
for (int ctr = 0; ctr <= 16; ctr++) {
BigInteger newNumber = BigInteger.Divide(number, BigInteger.Pow(2, ctr));
if (newNumber * ctr < 0)
newNumber--;
Console.WriteLine(" {0,2} bits: {1,35} {2,30}",
ctr, newNumber, newNumber.ToString("X"));
}
// The example displays the following output:
// 0 bits: -9047321678449816249999312055 E2C43B1D0D6F07D2CC1FBB49
// 1 bits: -4523660839224908124999656028 F1621D8E86B783E9660FDDA4
// 2 bits: -2261830419612454062499828014 8B10EC7435BC1F4B307EED2
// 3 bits: -1130915209806227031249914007 C588763A1ADE0FA5983F769
// 4 bits: -565457604903113515624957004 E2C43B1D0D6F07D2CC1FBB4
// 5 bits: -282728802451556757812478502 F1621D8E86B783E9660FDDA
// 6 bits: -141364401225778378906239251 8B10EC7435BC1F4B307EED
// 7 bits: -70682200612889189453119626 C588763A1ADE0FA5983F76
// 8 bits: -35341100306444594726559813 E2C43B1D0D6F07D2CC1FBB
// 9 bits: -17670550153222297363279907 F1621D8E86B783E9660FDD
// 10 bits: -8835275076611148681639954 8B10EC7435BC1F4B307EE
// 11 bits: -4417637538305574340819977 C588763A1ADE0FA5983F7
// 12 bits: -2208818769152787170409989 E2C43B1D0D6F07D2CC1FB
// 13 bits: -1104409384576393585204995 F1621D8E86B783E9660FD
// 14 bits: -552204692288196792602498 8B10EC7435BC1F4B307E
// 15 bits: -276102346144098396301249 C588763A1ADE0FA5983F
// 16 bits: -138051173072049198150625 E2C43B1D0D6F07D2CC1F
Dim number As BigInteger = BigInteger.Parse("-9047321678449816249999312055")
Console.WriteLine("Shifting {0} right by:", number)
For ctr As Integer = 0 To 16
Dim newNumber As BigInteger = BigInteger.Divide(number, BigInteger.Pow(2, ctr))
If newNumber * ctr < 0 Then newNumber = newNumber - 1
Console.WriteLine(" {0,2} bits: {1,35} {2,30}",
ctr, newNumber, newNumber.ToString("X"))
Next
' The example displays the following output:
' 0 bits: -9047321678449816249999312055 E2C43B1D0D6F07D2CC1FBB49
' 1 bits: -4523660839224908124999656028 F1621D8E86B783E9660FDDA4
' 2 bits: -2261830419612454062499828014 8B10EC7435BC1F4B307EED2
' 3 bits: -1130915209806227031249914007 C588763A1ADE0FA5983F769
' 4 bits: -565457604903113515624957004 E2C43B1D0D6F07D2CC1FBB4
' 5 bits: -282728802451556757812478502 F1621D8E86B783E9660FDDA
' 6 bits: -141364401225778378906239251 8B10EC7435BC1F4B307EED
' 7 bits: -70682200612889189453119626 C588763A1ADE0FA5983F76
' 8 bits: -35341100306444594726559813 E2C43B1D0D6F07D2CC1FBB
' 9 bits: -17670550153222297363279907 F1621D8E86B783E9660FDD
' 10 bits: -8835275076611148681639954 8B10EC7435BC1F4B307EE
' 11 bits: -4417637538305574340819977 C588763A1ADE0FA5983F7
' 12 bits: -2208818769152787170409989 E2C43B1D0D6F07D2CC1FB
' 13 bits: -1104409384576393585204995 F1621D8E86B783E9660FD
' 14 bits: -552204692288196792602498 8B10EC7435BC1F4B307E
' 15 bits: -276102346144098396301249 C588763A1ADE0FA5983F
' 16 bits: -138051173072049198150625 E2C43B1D0D6F07D2CC1F
Если shift
значение больше или равно числу битов в положительном BigInteger значении, результатом операции сдвига вправо будет BigInteger.Zero .If shift
is greater than or equal to the number of bits in a positive BigInteger value, the result of the right-shift operation is BigInteger.Zero. Если shift
значение больше числа битов в отрицательном BigInteger значении, результатом операции сдвига вправо будет BigInteger.MinusOne .If shift
is greater than the number of bits in a negative BigInteger value, the result of the right-shift operation is BigInteger.MinusOne.