Java Doubles类
Doubles 是一个用于原始类型 double 的实用类 。 它提供了Double或Arrays中没有的与双倍基元相关的 静态实用方法 。
声明 :
@GwtCompatible(emulated=true)
public final class Doubles
extends Object
下表显示了Guava Doubles Class的字段总结。
Guava Doubles Class提供的一些方法有:
异常。
- min : 如果数组为空,会出现IllegalArgumentException。
- max : 如果数组是空的,会出现IllegalArgumentException。
- ensureCapacity : 如果minLength或padding为负数,则出现IllegalArgumentException。
- toArray : 如果集合或其任何元素为空,则出现NullPointerException。
下表显示了Guava Doubles类提供的其他一些方法:
下面给出了一些例子,显示了Guava Doubles类方法的实现:
例1:
// Java code to show implementation
// of Guava Doubles.asList() method
import com.google.common.primitives.Doubles;
import java.util.*;
class GFG {
// Driver method
public static void main(String[] args)
{
double arr[] = { 2.6, 4.6, 1.2, 2.4, 1.5 };
// Using Doubles.asList() method which
// converts array of primitives to array of objects
List<Double> myList = Doubles.asList(arr);
// Displaying the elements
System.out.println(myList);
}
}
输出:
[2.6, 4.6, 1.2, 2.4, 1.5]
例2 :
// Java code to show implementation
// of Guava Doubles.toArray() method
import com.google.common.primitives.Doubles;
import java.util.*;
class GFG {
// Driver method
public static void main(String[] args)
{
List<Double> myList = Arrays.asList(2.6, 4.6, 1.2, 2.4, 1.5);
// Using Doubles.toArray() method which
// converts a List of Doubles to an
// array of double
double[] arr = Doubles.toArray(myList);
// Displaying the elements
System.out.println(Arrays.toString(arr));
}
}
输出:
[2.6, 4.6, 1.2, 2.4, 1.5]
例3 :
// Java code to show implementation
// of Guava Doubles.concat() method
import com.google.common.primitives.Doubles;
import java.util.*;
class GFG {
// Driver method
public static void main(String[] args)
{
double[] arr1 = { 2.6, 4.6, 1.2 };
double[] arr2 = { 2.4, 1.5 };
// Using Doubles.concat() method which
// combines arrays from specified
// arrays into a single array
double[] arr = Doubles.concat(arr1, arr2);
// Displaying the elements
System.out.println(Arrays.toString(arr));
}
}
输出:
[2.6, 4.6, 1.2, 2.4, 1.5]
例4 :
// Java code to show implementation
// of Guava Doubles.contains() method
import com.google.common.primitives.Doubles;
class GFG {
// Driver method
public static void main(String[] args)
{
double[] arr = { 2.6, 4.6, 1.2, 2.4, 1.5 };
// Using Doubles.contains() method which
// checks if element is present in array
// or not
System.out.println(Doubles.contains(arr, 2.5));
System.out.println(Doubles.contains(arr, 1.5));
}
}
产出 :
false
true
例5 :
// Java code to show implementation
// of Guava Doubles.min() method
import com.google.common.primitives.Doubles;
class GFG {
// Driver method
public static void main(String[] args)
{
double[] arr = { 2.6, 4.6, 1.2, 2.4, 1.5 };
// Using Doubles.min() method
System.out.println(Doubles.min(arr));
}
}
输出:
1.2
例6 :
// Java code to show implementation
// of Guava Doubles.max() method
import com.google.common.primitives.Doubles;
class GFG {
// Driver method
public static void main(String[] args)
{
double[] arr = { 2.6, 4.6, 1.2, 2.4, 1.5 };
// Using Doubles.max() method
System.out.println(Doubles.max(arr));
}
}
输出:
4.6