当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.lang.StrictMath.max()用法及代码示例



描述

这个java.lang.StrictMath.max(int a, int b) 方法返回两个 int 值中的较大者。也就是说,结果是更接近 Integer.MAX_VALUE 值的参数。如果参数具有相同的值,则结果是相同的值。

声明

以下是声明java.lang.StrictMath.max()方法

public static int max(int a, int b)

参数

  • a- 这是整数值。

  • b- 这是另一个 int 值。

返回值

此方法返回 a 和 b 中较大的一个。

异常

NA

示例

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

package com.tutorialspoint;

import java.lang.*;

public class StrictMathDemo {

   public static void main(String[] args) {

      int i1 = 45 , i2 = 20, i3 = -15;
   
      // both positive values
      double maxValue = StrictMath.max(i1, i2); 
      System.out.println("StrictMath.max(45, 20):" + maxValue);

      // one positive and one negative value
      maxValue = StrictMath.max(i1, i3); 
      System.out.println("StrictMath.max(45, -15):" + maxValue);    
   }
}

让我们编译并运行上面的程序,这将产生以下结果 -

StrictMath.max(45, 20):45.0
StrictMath.max(45, -15):45.0

相关用法


注:本文由纯净天空筛选整理自 Java.lang.StrictMath.max() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。