What is the equivalent (in C#) of Java's >>> operator? Just to clarify, I'm not referring to the >> and << operators.

link|improve this question

3  
There is no <<< operator in Java, only a >>> operator. – Jesper Dec 10 '09 at 12:30
feedback

4 Answers

up vote 10 down vote accepted

In C#, you can use unsigned integer types, and then the << and >> do what you expect. The MSDN documentation on shift operators gives you the details.

Since Java doesn't support unsigned integers (apart from char), this additional operator became necessary.

link|improve this answer
great thanks for the input – Nikolaos Dec 10 '09 at 11:20
feedback

Java doesn't have an unsigned left shift (<<<), but either way, you can just cast to uint and shfit from there.

E.g.

(int)((uint)foo >> 2); // temporarily cast to uint, shift, then cast back to int
link|improve this answer
Java doesn't? or C# doesn't? – Will Dec 10 '09 at 11:02
1  
C# doesn't have any 'unsigned shift' operators. Java has an unsigned RIGHT shift, but not an unsigned LEFT shift. – Matt Dec 10 '09 at 11:08
+1 Thanks for your input on this. Will keep it in mind for when I am forced to use signed types. – Nikolaos Dec 10 '09 at 11:21
1  
There's no need for <<< because sign-extension isn't relevant for left shifts. – dan04 Mar 24 '10 at 6:12
feedback

Upon reading this, I hope my conclusion of use as follows is correct. If not, insights appreciated.

Java

i >>>= 1;

C#:

i = (int)((uint)i >> 1);
link|improve this answer
feedback

n >>> s in Java is equivalent to TripleShift(n,s) where:

    private static long TripleShift(long n, int s)
    {
        if (n >= 0)
            return n >> s;
        return (n >> s) + (2 << ~s);
    }
link|improve this answer
(2 << ~s) will not work... – Lucero Jul 29 '11 at 7:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.