當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.lang.StrictMath.abs()用法及代碼示例



描述

這個java.lang.StrictMath.abs(long a) 方法返回一個long值的絕對值。如果參數不是負數,則返回該參數。如果參數為負,則返回參數的否定。

聲明

以下是聲明java.lang.StrictMath.abs()方法

public static long abs(long a)

參數

a─ 這是要確定絕對值的參數。

返回值

此方法返回 long 值的絕對值。

異常

NA

示例

下麵的例子展示了 java.lang.StrictMath.abs() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class StrictMathDemo {

   public static void main(String[] args) {

      long l1 = 55475693, l2 = -7538911;
   
      // returns the absolute value of positive long value
      long lAbsValue = StrictMath.abs(l1);
      System.out.println("absolute value of " + l1 + " = " + lAbsValue);    

      // returns the absolute value of negative long value
      lAbsValue = StrictMath.abs(l2);
      System.out.println("absolute value of " + l2 + " = " + lAbsValue);
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果——

absolute value of 55475693 = 55475693
absolute value of -7538911 = 7538911

相關用法


注:本文由純淨天空篩選整理自 Java.lang.StrictMath.abs() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。