logo

Java Integer intValue() メソッド

intValue() メソッドは、以下の Integer クラスのインスタンス メソッドです。 java.lang パッケージ。このメソッドは、指定された数値の値を int として返します。これは Number クラスから継承されます。

構文:

以下は宣言です intValue() 方法:

 public int intValue() 

パラメータ:

データ・タイプ パラメータ 説明
それ それ このメソッドはパラメータを受け入れません。

戻り値:

intValue() メソッドは、int 型に変換した後、このオブジェクトによって表される数値を返します。

例外:

それ

メディア送信

互換性のあるバージョン:

Java 1.2以降

例1

 public class IntegerIntValuetExample1 { public static void main(String[] args) { Integer object = new Integer(25); // returns the value of this Integer as an int int i = object.intValue(); System.out.println('Value of i is: ' + i); } } 
今すぐテストしてください

出力:

 Value of i is: 25 

例 2

 public class IntegerIntValuetExample2 { public static void main(String[] args) { // get number as float Float x = new Float(568f); // print the value as int System.out.println('Integer Value of X: '+x.intValue()); // get number as double Double y = new Double(55.76); // print the value as int System.out.println('Integer Value of Y: '+y.intValue()); } } 
今すぐテストしてください

出力:

 Integer Value of X: 568 Integer Value of Y: 55 

例 3

 import java.util.Scanner; public class IntegerIntValuetExample3 { public static void main(String[] args) { // input number from console System.out.print('Enter The Desired Integer Value: '); Scanner readInput = new Scanner(System.in); int i = readInput.nextInt(); readInput.close(); Integer myValue = new Integer(i); System.out.println('Integer Value is: ' + myValue.intValue()); } } 

出力:

 Enter The Desired Integer Value: 2342 Integer Value is: 2342 

例 4

 public class IntegerIntValuetExample4 { public static void main(String[] args) { int x = 66; int y = 5; Integer i = new Integer(x); int result = i.intValue()/y; System.out.println('Value is = '+result); } } 
今すぐテストしてください

出力:

 Value is = 13