Double類的intValue()方法是一種內置方法,用於在類型轉換後返回調用對象指定為int的值。
用法:
DoubleObject.intValue()
返回值:它以Double形式返回DoubleObject的值。
以下程序說明了Java中的intValue()方法:
示例1:
// Java code to demonstrate
// Double intValue() method
class GFG {
public static void main(String[] args)
{
// Double value
Double a = 17.47;
// wrapping the Double value
// in the wrapper class Double
Double b = new Double(a);
// intValue of the Double Object
int output = b.intValue();
// printing the output
System.out.println("Int value of "
+ b + " is : " + output);
}
}
輸出:
Int value of 17.47 is : 17
示例2:
// Java code to demonstrate
// Double intValue() method
class GFG {
public static void main(String[] args)
{
String value = "54.1";
// wrapping the Double value
// in the wrapper class Double
Double b = new Double(value);
// intValue of the Double Object
int output = b.intValue();
// printing the output
System.out.println("Int value of "
+ b + " is : " + output);
}
}
輸出:
Int value of 54.1 is : 54
相關用法
- Java LongAdder intValue()用法及代碼示例
- Java AtomicLong intValue()用法及代碼示例
- Java Float intValue()用法及代碼示例
- Java Number.intValue()用法及代碼示例
- Java DoubleAccumulator intValue()用法及代碼示例
- Java AtomicInteger intValue()用法及代碼示例
- Java Level intValue()用法及代碼示例
- Java LongAccumulator intValue()用法及代碼示例
- Java DoubleAdder intValue()用法及代碼示例
- Java Byte intValue()用法及代碼示例
- Java Doubles.indexOf(double[] array, double[] target)用法及代碼示例
- Java Doubles.indexOf(double[] array, double target)用法及代碼示例
- Java Double parseDouble()用法及代碼示例
- Java Double doubleToRawLongBits()用法及代碼示例
- Java Double compare()用法及代碼示例
注:本文由純淨天空篩選整理自ShivamKD大神的英文原創作品 Double intValue() method in Java with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。