Long 类是基本类型 long 的wrapper class,它包含多种有效处理 long 值的方法,例如将其转换为字符串表示形式,反之亦然。 Long 类的对象可以保存单个 long 值。主要有两个构造函数来初始化 Long 对象 -
- 长(长b):创建一个使用提供的值初始化的 Long 对象。
Syntax : public Long(long b) Parameters : b : value with which to initialize
- 长(字符串):创建一个 Long 对象,并使用字符串表示形式提供的 long 值进行初始化。默认基数为 10。
Syntax : public Long(String s) throws NumberFormatException Parameters : s : string representation of the long value Throws : NumberFormatException : If the string provided does not represent any long value.
方法:
1.toString():返回long值对应的字符串。
Syntax : public String toString(long b) Parameters : b : long value for which string representation required.
2. Long.toHexString()):以十六进制形式返回long值对应的字符串,即返回以十六进制字符表示long值的字符串-[0-9][a-f]
Syntax : public String toHexString(long b) Parameters : b : long value for which hex string representation required.
3. toOctalString():返回八进制形式的long值对应的字符串,即返回八进制字符表示long值的字符串-[0-7]
Syntax : public String toOctalString(long b) Parameters : b : long value for which octal string representation required.
4. toBinaryString():返回long值对应的二进制数字的字符串,即返回代表long值的十六进制字符的字符串-[0/1]
Syntax : public String toBinaryString(long b) Parameters : b : long value for which binary string representation required.
5. valueOf():返回使用提供的值初始化的 Long 对象。
Syntax : public static Long valueOf(long b) Parameters : b : a long value
另一个重载函数 valueOf(String val,long radix) 提供类似于
new Long(Long.parseLong(val,基数))
Syntax : public static Long valueOf(String val, long radix) throws NumberFormatException Parameters : val : String to be parsed into long value radix : radix to be used while parsing Throws : NumberFormatException : if String cannot be parsed to a long value in given radix.
另一个重载函数 valueOf(String val) 提供类似于
new Long(Long.parseInt(val,10))
Syntax : public static Long valueOf(String s) throws NumberFormatException Parameters : s : a String object to be parsed as long Throws : NumberFormatException : if String cannot be parsed to a long value in given radix.
6. parseLong():通过解析提供的基数中的字符串返回long值。与 valueOf() 不同,它返回原始 long 值,而 valueOf() 返回 Long 对象。
Syntax : public static long parseInt(String val, int radix) throws NumberFormatException Parameters : val : String representation of long radix : radix to be used while parsing Throws : NumberFormatException : if String cannot be parsed to a long value in given radix.
另一个仅包含 String 作为参数的重载方法,基数默认设置为 10。
Syntax : public static long parseLong(String val) throws NumberFormatException Parameters : val : String representation of long Throws : NumberFormatException : if String cannot be parsed to a long value in given radix.
7. getLong():返回表示与给定系统属性关联的值的 Long 对象,如果不存在则返回 null。
Syntax : public static Long getLong(String prop) Parameters : prop : System property
另一个重载方法,如果属性不存在,则返回第二个参数,即它不返回 null,而是返回用户提供的默认值。
Syntax : public static Long getLong(String prop, long val) Parameters : prop : System property val : value to return if property does not exist.
另一种重载方法,根据返回值解析值,即如果返回值以“#”开头,则解析为十六进制,如果以“0”开头,则解析为八进制,否则解析为十进制。
Syntax : public static Long getLong(String prop, Long val) Parameters : prop : System property val : value to return if property does not exist.
8. Long decode():返回一个 Long 对象,其中保存所提供字符串的解码值。提供的字符串必须采用以下形式,否则将抛出NumberFormatException -
十进制-(符号)Decimal_Number
十六进制-(符号)”0x”Hex_Digits
十六进制-(符号)”0X”Hex_Digits
八进制-(符号)”0″Octal_Digits
Syntax : public static Long decode(String s) throws NumberFormatException Parameters : s : encoded string to be parsed into long val Throws : NumberFormatException : If the string cannot be decoded into a long value
9. rotateLeft():通过以给定值的二进制补码形式将位向左旋转给定距离,返回原始 long。当向左旋转时,最高有效位移动到右侧,或最低有效位置,即发生位的循环移动。负距离表示右旋转。
Syntax : public static long rotateLeft(long val, int dist) Parameters : val : long value to be rotated dist : distance to rotate
10. rotateRight():通过以给定值的二进制补码形式将位向右旋转给定距离,返回原始 long。当向右旋转时,最低有效位移动到左侧,或者最高有效位置,即发生位的循环移动。负距离表示左旋转。
Syntax : public static long rotateRight(long val, int dist) Parameters : val : long value to be rotated dist : distance to rotate
Java
// Java program to illustrate
// various Long class methods
public class Long_test
{
public static void main(String args[])
{
long b = 55;
String bb = "45";
// Construct two Long objects
Long x = new Long(b);
Long y = new Long(bb);
// toString()
System.out.println("toString(b) = " + Long.toString(b));
// toHexString(),toOctalString(),toBinaryString()
// converts into hexadecimal, octal and binary forms.
System.out.println("toHexString(b) =" + Long.toHexString(b));
System.out.println("toOctalString(b) =" + Long.toOctalString(b));
System.out.println("toBinaryString(b) =" + Long.toBinaryString(b));
// valueOf(): return Long object
// an overloaded method takes radix as well.
Long z = Long.valueOf(b);
System.out.println("valueOf(b) = " + z);
z = Long.valueOf(bb);
System.out.println("ValueOf(bb) = " + z);
z = Long.valueOf(bb, 6);
System.out.println("ValueOf(bb,6) = " + z);
// parseLong(): return primitive long value
// an overloaded method takes radix as well
long zz = Long.parseLong(bb);
System.out.println("parseLong(bb) = " + zz);
zz = Long.parseLong(bb, 6);
System.out.println("parseLong(bb,6) = " + zz);
// getLong(): can be used to retrieve
// long value of system property
long prop = Long.getLong("sun.arch.data.model");
System.out.println("getLong(sun.arch.data.model) = " + prop);
System.out.println("getLong(abcd) =" + Long.getLong("abcd"));
// an overloaded getLong() method
// which return default value if property not found.
System.out.println("getLong(abcd,10) =" + Long.getLong("abcd", 10));
// decode() : decodes the hex,octal and decimal
// string to corresponding long values.
String decimal = "45";
String octal = "005";
String hex = "0x0f";
Long dec = Long.decode(decimal);
System.out.println("decode(45) = " + dec);
dec = Long.decode(octal);
System.out.println("decode(005) = " + dec);
dec = Long.decode(hex);
System.out.println("decode(0x0f) = " + dec);
// rotateLeft and rotateRight can be used
// to rotate bits by specified distance
long valrot = 2;
System.out.println("rotateLeft(0000 0000 0000 0010 , 2) =" +
Long.rotateLeft(valrot, 2));
System.out.println("rotateRight(0000 0000 0000 0010,3) =" +
Long.rotateRight(valrot, 3));
}
}
toString(b) = 55 toHexString(b) =37 toOctalString(b) =67 toBinaryString(b) =110111 valueOf(b) = 55 ValueOf(bb) = 45 ValueOf(bb,6) = 29 parseLong(bb) = 45 parseLong(bb,6) = 29 getLong(sun.arch.data.model) = 64 getLong(abcd) =null getLong(abcd,10) =10 decode(45) = 45 decode(005) = 5 decode(0x0f) = 15 rotateLeft(0000 0000 0000 0010 , 2) =8 rotateRight(0000 0000 0000 0010,3) =4611686018427387904
更多的 Long 类方法是 -
11. Java lang.Long.byteValue()):返回与此长对象对应的字节值。
Syntax : public byte byteValue()
12.shortValue():返回与该Long Object对应的short值。
Syntax : public short shortValue()
13. intValue():返回该Long Object对应的int值。
Syntax : public int intValue()
14. Long longValue():返回与此长对象对应的long值。
Syntax : public long longValue()
15. doubleValue():返回与该Long Object对应的double值。
Syntax : public double doubleValue()
16.floatValue():返回与该Long Object对应的浮点值。
Syntax : public float floatValue()
17.hashCode():返回该Long Object对应的hashcode。
Syntax : public int hashCode()
18. bitcount():返回长给定的二进制补码中设置的位数。
Syntax : public static int bitCount(long i) Parameters : i : long value whose set bits to count
19. Java lang.Long.numberOfLeadingZeros():以二进制补码形式返回值的最高 1 位之前的 0 位的数量,即,如果二进制补码形式的数字为 0000 1010 0000 0000,则此函数将返回 4。
Syntax : public static int numberofLeadingZeroes(long i) Parameters : i : long value whose leading zeroes to count in twos complement form
20. Java lang.Long.numberOfTrailingZeros():以二进制补码形式返回值的最后 1 位之后的 0 位的数量,即,如果二进制补码形式的数字为 0000 1010 0000 0000,则此函数将返回 9。
Syntax : public static int numberofTrailingZeroes(long i) Parameters : i : long value whose trailing zeroes to count in twos complement form
21. Java lang.Long.highestOneBit():返回一个至多只有一位的值,位于给定值中最高一位的位置。如果给定值为 0,即返回 0,即如果数字为 0000 0000 0000 1111,则此函数返回 0000 0000 0000 1000(给定数字中的最高一位)
Syntax : public static long highestOneBit(long i) Parameters : i : long value
22. Java lang.Long.lowestOneBit():返回一个最多包含一位的值,位于给定值中最低一位的位置。如果给定的值为 0,即如果数字为 0000 0000 0000 1111,则返回 0,则此函数返回 0000 0000 0000 0001(给定数字中的最高一位)
Syntax : public static long LowestOneBit(long i) Parameters : i : long value
23. Long equals():用于比较两个 Long 对象的相等性。如果两个对象包含相同的 long 值,则此方法返回 true。仅应在检查相等性时使用。在所有其他情况下,compareTo 方法应该是首选。
Syntax : public boolean equals(Object obj) Parameters : obj : object to compare with
24. long compareTo():用于比较两个 Long 对象的数值是否相等。在比较两个 Long 值的数值相等时应使用此选项,因为它会区分较小值和较大值。返回小于 0,0 的值,大于 0 的值表示小于、等于和大于。
Syntax : public int compareTo(Long b) Parameters : b : Long object to compare with
25. compare():用于比较两个原始长整型值的数值是否相等。由于它是静态方法,因此可以在不创建任何 Long 对象的情况下使用它。
Syntax : public static int compare(long x,long y) Parameters : x : long value y : another long value
26. Long signum():对于负值返回 -1,对于 0 返回 0,对于大于 0 的值返回 +1。
Syntax : public static int signum(long val) Parameters : val : long value for which signum is required.
27. Java lang.Long.reverse():返回一个原始的 long 值,反转给定 long 值的二进制补码形式的位顺序。
Syntax : public static long reverseBytes(long val) Parameters : val : long value whose bits to reverse in order.
28. reverseBytes():返回一个原始 long 值,以给定 long 值的二进制补码形式反转字节顺序。
Syntax : public static long reverseBytes(long val) Parameters : val : long value whose bits to reverse in order.
Java
// Java program to illustrate
// various Long methods
public class Long_test
{
public static void main(String args[])
{
long b = 55;
String bb = "45";
// Construct two Long objects
Long x = new Long(b);
Long y = new Long(bb);
// xxxValue can be used to retrieve
// xxx type value from long value.
// xxx can be int,byte,short,long,double,float
System.out.println("bytevalue(x) = " + x.byteValue());
System.out.println("shortvalue(x) = " + x.shortValue());
System.out.println("intvalue(x) = " + x.intValue());
System.out.println("longvalue(x) = " + x.longValue());
System.out.println("doublevalue(x) = " + x.doubleValue());
System.out.println("floatvalue(x) = " + x.floatValue());
long value = 45;
// bitcount() : can be used to count set bits
// in twos complement form of the number
System.out.println("Long.bitcount(value)=" + Long.bitCount(value));
// numberOfTrailingZeroes and numberOfLeaadingZeroes
// can be used to count prefix and postfix sequence of 0
System.out.println("Long.numberOfTrailingZeros(value)=" +
Long.numberOfTrailingZeros(value));
System.out.println("Long.numberOfLeadingZeros(value)=" +
Long.numberOfLeadingZeros(value));
// highestOneBit returns a value with one on highest
// set bit position
System.out.println("Long.highestOneBit(value)=" +
Long.highestOneBit(value));
// highestOneBit returns a value with one on lowest
// set bit position
System.out.println("Long.lowestOneBit(value)=" +
Long.lowestOneBit(value));
// reverse() can be used to reverse order of bits
// reverseBytes() can be used to reverse order of bytes
System.out.println("Long.reverse(value)=" + Long.reverse(value));
System.out.println("Long.reverseBytes(value)=" +
Long.reverseBytes(value));
// signum() returns -1,0,1 for negative,0 and positive
// values
System.out.println("Long.signum(value)=" + Long.signum(value));
// hashcode() returns hashcode of the object
int hash = x.hashCode();
System.out.println("hashcode(x) = " + hash);
// equals returns boolean value representing equality
boolean eq = x.equals(y);
System.out.println("x.equals(y) = " + eq);
// compare() used for comparing two int values
int e = Long.compare(x, y);
System.out.println("compare(x,y) = " + e);
// compareTo() used for comparing this value with some
// other value
int f = x.compareTo(y);
System.out.println("x.compareTo(y) = " + f);
}
}
bytevalue(x) = 55 shortvalue(x) = 55 intvalue(x) = 55 longvalue(x) = 55 doublevalue(x) = 55.0 floatvalue(x) = 55.0 Long.bitcount(value)=4 Long.numberOfTrailingZeros(value)=0 Long.numberOfLeadingZeros(value)=58 Long.highestOneBit(value)=32 Long.lowestOneBit(value)=1 Long.reverse(value)=-5476377146882523136 Long.reverseBytes(value)=3242591731706757120 Long.signum(value)=1 hashcode(x) = 55 x.equals(y) = false compare(x,y) = 1 x.compareTo(y) = 1
相关用法
- Java Java.Lang.Byte用法及代码示例
- Java Java.Lang.Double用法及代码示例
- Java Java.io.BufferedInputStream.available()用法及代码示例
- Java Java.io.BufferedInputStream.close()用法及代码示例
- Java Java.io.BufferedInputStream.read()用法及代码示例
- Java Java.io.BufferedInputStream.reset()用法及代码示例
- Java Java.io.BufferedInputStream.skip()用法及代码示例
- Java Java.io.BufferedOutputStream.flush()用法及代码示例
- Java Java.io.BufferedOutputStream.Write()用法及代码示例
- Java Java.io.BufferedReader.Close()用法及代码示例
- Java Java.io.BufferedReader.mark()用法及代码示例
- Java Java.io.BufferedReader.markSupported()用法及代码示例
- Java Java.io.BufferedReader.read()用法及代码示例
- Java Java.io.BufferedReader.readline()用法及代码示例
- Java Java.io.BufferedReader.ready()用法及代码示例
- Java Java.io.BufferedReader.reset()用法及代码示例
- Java Java.io.BufferedReader.skip()用法及代码示例
- Java Java.io.BufferedWriter.close()用法及代码示例
- Java Java.io.BufferedWriter.flush()用法及代码示例
- Java Java.io.BufferedWriter.newLine()用法及代码示例
- Java Java.io.BufferedWriter.write()用法及代码示例
- Java Java.io.ByteArrayInputStream.available()用法及代码示例
- Java Java.io.ByteArrayInputStream.close()用法及代码示例
- Java Java.io.ByteArrayInputStream.mark()用法及代码示例
- Java Java.io.ByteArrayInputStream.read()用法及代码示例
注:本文由纯净天空筛选整理自佚名大神的英文原创作品 Java.Lang.Long class in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。