The intValue() metode ir integer klases instanču metode java.lang iepakojums. Šī metode atgriež norādītā skaitļa vērtību kā int. Tas ir mantots no skaitļu klases.
Sintakse:
Tālāk ir sniegta deklarācija intValue() metode:
public int intValue()
Parametrs:
Datu tips | Parametrs | Apraksts |
---|---|---|
TAS | TAS | Šī metode nepieņem nevienu parametru. |
Atgriež:
The intValue() metode atgriež skaitlisko vērtību, ko attēlo šis objekts pēc konvertēšanas uz tipu int.
Izņēmumi:
TAS
rindas autocad komanda
Saderības versija:
Java 1.2 un jaunāka versija
1. piemērs
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); } }Izmēģiniet to tagad
Izvade:
Value of i is: 25
2. piemērs
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()); } }Izmēģiniet to tagad
Izvade:
Integer Value of X: 568 Integer Value of Y: 55
3. piemērs
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()); } }
Izvade:
Enter The Desired Integer Value: 2342 Integer Value is: 2342
4. piemērs
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); } }Izmēģiniet to tagad
Izvade:
Value is = 13