Java Long.rotateRight(long i, int distance)
Syntax
Long.rotateRight(long i, int distance) has the following syntax.
public static long rotateRight(long i, int distance)
Example
In the following code shows how to use Long.rotateRight(long i, int distance) method.
public class Main {
/*from ww w . j a v a 2 s .c o m*/
public static void main(String[] args) {
long n = 64;
n = Long.rotateRight(n, 4);
System.out.println(n);
}
}
The code above generates the following result.