Le valeurint() La méthode est une méthode d'instance de la classe Integer sous java.lang emballer. Cette méthode renvoie la valeur du nombre spécifié sous forme de entier. Il est hérité de la classe Number.
Syntaxe:
Voici la déclaration de valeurint() méthode:
public int intValue()
Paramètre:
Type de données | Paramètre | Description |
---|---|---|
QUE | QUE | Cette méthode n'accepte aucun paramètre. |
Retour:
Le valeurint() La méthode renvoie la valeur numérique représentée par cet objet après conversion en type int.
Des exceptions:
QUE
si-sinon java
Version de compatibilité :
Java 1.2 et supérieur
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); } }Testez-le maintenant
Sortir:
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()); } }Testez-le maintenant
Sortir:
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()); } }
Sortir:
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); } }Testez-le maintenant
Sortir:
Value is = 13