logo

שיטת Java Math.abs()‎

ה java.lang.Math.abs() השיטה מחזירה את הערך המוחלט (החיובי) של ערך int. שיטה זו נותנת את הערך המוחלט של הטיעון. הטיעון יכול להיות int, double, long ו-float.

תחביר:

 public static int abs(int i) public static double abs(double d) public static float abs(float f) public static long abs(long lng) 

פרמטרים:

 The argument whose absolute value is to be determined 

לַחֲזוֹר:

 This method returns the absolute value of the argument 
  • אם נספק ערך חיובי או שלילי כארגומנט, שיטה זו תביא לערך חיובי.
  • אם הטיעון הוא אינסוף , שיטה זו תביא אינסוף חיובי .
  • אם הטיעון הוא NaN , שיטה זו תחזור NaN .
  • אם הארגומנט שווה לערך של Integer.MIN_VALUE או Long.MIN_VALUE, ערך int או ערך ארוך המיוצג השלילי ביותר, התוצאה היא אותו ערך, שהוא שלילי.

דוגמה 1:

 public class AbsExample1 { public static void main(String args[]) { int x = 78; int y = -48; //print the absolute value of int type System.out.println(Math.abs(x)); System.out.println(Math.abs(y)); System.out.println(Math.abs(Integer.MIN_VALUE)); } } 
בדוק את זה עכשיו

תְפוּקָה:

 78 48 -2147483648 

דוגמה 2:

 public class AbsExample2 { public static void main(String args[]) { double x = -47.63; double y = -894.37; //print the absolute value of double type System.out.println(Math.abs(x)); System.out.println(Math.abs(y)); System.out.println(Math.abs(7.0 / 0)); } } 
בדוק את זה עכשיו

תְפוּקָה:

 47.63 894.37 Infinity 

דוגמה 3:

 public class AbsExample3 { public static void main(String args[]) { float x = -73.02f; float y = -428.0f; //print the absolute value of float type System.out.println(Math.abs(x)); System.out.println(Math.abs(y)); } } 
בדוק את זה עכשיו

תְפוּקָה:

 73.02 428.0 

דוגמה 4:

 public class AbsExample4 { public static void main(String args[]) { long x = 78730343; long y = -4839233; //print the absolute value of long type System.out.println(Math.abs(x)); System.out.println(Math.abs(y)); System.out.println(Math.abs(Long.MIN_VALUE)); } } 
בדוק את זה עכשיו

תְפוּקָה:

 78730343 4839233 -9223372036854775808