logo

Java sveikasis skaičius intValue() metodas

The intValue() metodas yra Integer klasės egzempliorių metodas java.lang paketą. Šis metodas grąžina nurodyto skaičiaus reikšmę kaip int. Jis paveldėtas iš skaičių klasės.

Sintaksė:

Toliau pateikiama deklaracija intValue() metodas:

 public int intValue() 

Parametras:

Duomenų tipas Parametras apibūdinimas
TAI TAI Šis metodas nepriima jokių parametrų.

Grąžinimai:

The intValue() metodas grąžina šio objekto skaitinę reikšmę po konvertavimo į tipą int.

Išimtys:

TAI

lentynų šunys

Suderinamumo versija:

Java 1.2 ir naujesnės versijos

1 pavyzdys

 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); } } 
Išbandykite dabar

Išvestis:

 Value of i is: 25 

2 pavyzdys

 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()); } } 
Išbandykite dabar

Išvestis:

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

3 pavyzdys

 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()); } } 

Išvestis:

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

4 pavyzdys

 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); } } 
Išbandykite dabar

Išvestis:

 Value is = 13