Java Long reverse()方法

java.lang.Long.reverse() 方法返回通过反转位的顺序在指定long值的二进制补码表示形式得到的值。

1 语法

public static long reverse(long i)

2 参数

i :这是long 值。

3 返回值

此方法返回通过反转顺序在指定long值的位所获得的值。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Long reverse()方法
 */
import java.lang.*;

public class LongDemo {

   public static void main(String[] args) {

     long l = 210;
     System.out.println("Number = " + l);
    
     /* returns the string representation of the unsigned long value 
     represented by the argument in binary (base 2) */
     System.out.println("Binary = " + Long.toBinaryString(l));

     /* returns the value obtained by reversing order of the bits in the
     specified long value */ 
     System.out.println("After reversing = " + Long.reverse(l)); 
   }
}

输出结果为:

Number = 210
Binary = 11010010
After reversing = 5404319552844595200

 

热门文章

优秀文章