ה intValue() method היא שיטת מופע של מחלקה Integer under java.lang חֲבִילָה. שיטה זו מחזירה את הערך של המספר שצוין כ-int. זה עובר בירושה ממחלקת המספרים.
תחביר:
להלן ההצהרה של 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