Byte類的intValue()方法是Java中的一種內置方法,用於將這個Byte對象的值作為int返回。
用法
ByteObject.intValue()
返回值:它將ByteObject的值返回為int。
下麵是Java中intValue()方法的實現:
示例1:
// Java code to demonstrate
// Byte intValue() method
class GFG {
public static void main(String[] args)
{
// byte value
byte a = 17;
// wrapping the byte value
// in the wrapper class Byte
Byte b = new Byte(a);
// intValue of the Byte Object
int output = b.intValue();
// printing the output
System.out.println("Integer value of "
+ a + " is : " + output);
}
}
輸出:
Integer value of 17 is : 17
示例2:
// Java code to demonstrate
// Byte intValue() method
class GFG {
public static void main(String[] args)
{
String value = "17";
// wrapping the byte value
// in the wrapper class Byte
Byte b = new Byte(value);
// intValue of the Byte Object
int output = b.intValue();
// printing the output
System.out.println("Integer value of "
+ b + " is : " + output);
}
}
輸出:
Integer value of 17 is : 17
相關用法
- Java DoubleAccumulator intValue()用法及代碼示例
- Java DoubleAdder intValue()用法及代碼示例
- Java Number.intValue()用法及代碼示例
- Java LongAccumulator intValue()用法及代碼示例
- Java AtomicLong intValue()用法及代碼示例
- Java Level intValue()用法及代碼示例
- Java AtomicInteger intValue()用法及代碼示例
- Java Float intValue()用法及代碼示例
- Java Double intValue()用法及代碼示例
- Java LongAdder intValue()用法及代碼示例
- Java Bytes.indexOf(byte[] array, byte[] target)用法及代碼示例
- Java Bytes.indexOf(byte[] array, byte target)用法及代碼示例
- Java Byte compare()用法及代碼示例
- Java Byte equals()用法及代碼示例
- Java Byte hashCode()用法及代碼示例
注:本文由純淨天空篩選整理自kundankumarjha大神的英文原創作品 Byte intValue() method in Java with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。