位置:首页 » 文章/教程分享 » Guava Doubles类

Doubles是double基本类型的实用工具类。

类声明

以下是com.google.common.primitives.Doubles类的声明:

@GwtCompatible(emulated=true)
   public final class Doubles
      extends Object


字段

S.N. 字段及说明
1 static int BYTES
所需要的字节数来表示基本的double值。

方法

S.N. 方法及说明
1 static List<Double> asList(double... backingArray)
返回由指定数组支持的固定大小的列表,类似 Arrays.asList(Object[]).
2 static int compare(double a, double b)
比较两个指定的double值。
3 static double[] concat(double[]... arrays)
每个数组提供组合成一个单一的数组,则返回值。
4 static boolean contains(double[] array, double target)
返回true,如果target是否存在在任何地方数组元素。
5 static double[] ensureCapacity(double[] array, int minLength, int padding)
返回一个包含相同的值数组的数组,但保证是一个规定的最小长度。
6 static int hashCode(double value)
返回哈希码的值;等于调用 ((Double) value).hashCode() 的结果.
7 static int indexOf(double[] array, double target)
返回目标数组的首次出现的索引值。
8 static int indexOf(double[] array, double[] target)
返回指定目标的第一个匹配的起始位置数组内,或-1,如果不存在。
9 static boolean isFinite(double value)
返回true,如果值代表一个实数。
10 static String join(String separator, double... array)
返回包含所提供的double 值的字符串,所指定的转换为字符串 Double.toString(double), 及相隔分离。
11 static int lastIndexOf(double[] array, double target)
返回target 在数组中最后一个出现的索引值。
12 static Comparator<double[]> lexicographicalComparator()
返回一个比较,比较两个double阵列字典顺序。
13 static double max(double... array)
返回存在于数组的最大值,使用比较为相同的规则 Math.max(double, double).
14 static double min(double... array)
返回存在于数组的最小值,使用比较为相同的规则 Math.min(double, double).
15 static Converter<String,Double> stringConverter()
返回字符串转换之间和double采用序列化器对象 Double.valueOf(java.lang.String) and Double.toString().
16 static double[] toArray(Collection<? extends Number> collection)
返回一个包含集合中的每个值的数组,转换为double值的方式Number.doubleValue().
17 static Double tryParse(String string)
解析指定的字符串作为一个双精度浮点值。

方法继承

这个类继承了以下类方法:

  • java.lang.Object

Doubles 示例

使用所选择的任何编辑器创建下面的java程序 C:/> Guava

GuavaTester.java
import java.util.List;

import com.google.common.primitives.Doubles;

public class GuavaTester {

   public static void main(String args[]){
      GuavaTester tester = new GuavaTester();
      tester.testDoubles();
   }

   private void testDoubles(){
      double[] doubleArray = {1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0};

      //convert array of primitives to array of objects
      List<Double> objectArray = Doubles.asList(doubleArray);
      System.out.println(objectArray.toString());

      //convert array of objects to array of primitives
      doubleArray = Doubles.toArray(objectArray);
      System.out.print("[ ");
      for(int i = 0; i< doubleArray.length ; i++){
         System.out.print(doubleArray[i] + " ");
      }
      System.out.println("]");
      //check if element is present in the list of primitives or not
      System.out.println("5.0 is in list? "+ Doubles.contains(doubleArray, 5.0f));

      //return the index of element
      System.out.println("5.0 position in list "+ Doubles.indexOf(doubleArray, 5.0f));

      //Returns the minimum		
      System.out.println("Min: " + Doubles.min(doubleArray));

      //Returns the maximum		
      System.out.println("Max: " + Doubles.max(doubleArray));	
   }
}

验证结果

使用javac编译器编译如下类

C:\Guava>javac GuavaTester.java

现在运行GuavaTester看到的结果

C:\Guava>java GuavaTester

看到结果。

[1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0]
[ 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0 ]
5.0 is in list? true
5.0 position in list 4
Min: 1.0
Max: 9.0