El intValue() El mètode és un mètode d'instància de la classe Integer sota java.lang paquet. Aquest mètode retorna el valor del nombre especificat com a int. S'hereta de la classe de números.
Sintaxi:
A continuació es presenta la declaració de intValue() mètode:
public int intValue()
Paràmetre:
Tipus de dades | Paràmetre | Descripció |
---|---|---|
AIXÒ | AIXÒ | Aquest mètode no accepta cap paràmetre. |
Devolucions:
El intValue() El mètode retorna el valor numèric representat per aquest objecte després de la conversió al tipus int.
Excepcions:
AIXÒ
seleccioneu entre diverses taules en sql
Versió de compatibilitat:
Java 1.2 i superior
Exemple 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); } }Prova-ho ara
Sortida:
Value of i is: 25
Exemple 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()); } }Prova-ho ara
Sortida:
Integer Value of X: 568 Integer Value of Y: 55
Exemple 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()); } }
Sortida:
Enter The Desired Integer Value: 2342 Integer Value is: 2342
Exemple 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); } }Prova-ho ara
Sortida:
Value is = 13