Java Double compare()方法
java.lang.Double.compare() 方法比较两个指定的double值。返回整数值符号是相同的,这将通过调用被返回整数:new Double(d1).compareTo(new Double(d2))
1 语法
public static int compare(double d1, double d2)
2 参数
d1:这是第一个要比较的double
d2:这是第二个要比较的double。
3 返回值
此方法返回值0,如果d1在数值上等于d2; 值小于0,如果d1是数值上比d2小; 返回值大于0,如果d1数值大于d2。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java Double compare()方法
*/
import java.lang.*;
public class DoubleDemo {
public static void main(String[] args) {
// compares the two specified double values
double d1 = 15.45;
double d2 = 11.50;
int retval = Double.compare(d1, d2);
if(retval > 0) {
System.out.println("d1 is greater than d2");
}
else if(retval < 0) {
System.out.println("d1 is less than d2");
}
else {
System.out.println("d1 is equal to d2");
}
}
}
输出结果为:
d1 is greater than d2
热门文章
优秀文章