logo

طريقة جافا 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 
  • إذا قدمنا ​​قيمة موجبة أو سلبية كوسيطة، فإن هذه الطريقة ستنتج قيمة موجبة.
  • إذا كانت الحجة ما لا نهاية ، سوف تنتج هذه الطريقة اللانهاية الإيجابية .
  • إذا كانت الحجة نان ، ستعود هذه الطريقة نان .
  • إذا كانت الوسيطة مساوية لقيمة 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