Java番石榴 |带有示例的 Floats.toArray() 方法
Guava 库中Floats 类的toArray()方法用于将作为参数传递给该方法的浮点值转换为浮点数组。这些浮点值作为集合传递给此方法。此方法返回一个浮点数组。
句法:
public static float[] toArray(Collection extends Number> collection)
参数:此方法接受一个强制参数集合,该集合是要转换为浮点数组的浮点值的集合。
返回值:此方法返回一个浮点数组,其中包含与集合相同的值,顺序相同。
异常:如果传递的集合或其任何元素为空,则此方法抛出NullPointerException 。
下面的程序说明了 toArray() 方法的使用:
示例 1:
// Java code to show implementation of
// Guava's Floats.toArray() method
import com.google.common.primitives.Floats;
import java.util.Arrays;
import java.util.List;
class GFG {
// Driver's code
public static void main(String[] args)
{
// Creating a List of Floats
List myList
= Arrays.asList(1.2f, 2.3f, 3.4f, 4.5f, 5.6f);
// Using Floats.toArray() method to convert
// a List or Set of Float to an array of Float
float[] arr = Floats.toArray(myList);
// Displaying an array containing each
// value of collection,
// converted to a float value
System.out.println(Arrays.toString(arr));
}
}
输出:
[1.2, 2.3, 3.4, 4.5, 5.6]
示例 2:
// Java code to show implementation of
// Guava's Floats.toArray() method
import com.google.common.primitives.Floats;
import java.util.Arrays;
import java.util.List;
class GFG {
// Driver's code
public static void main(String[] args)
{
try {
// Creating a List of Floats
List myList
= Arrays.asList(1.2f, 2.3f, 3.4f, null);
// Using Floats.toArray() method
// to convert a List or Set of Float
// to an array of Float.
// This should raise "NullPointerException"
// as the collection contains "null"
// as an element
float[] arr = Floats.toArray(myList);
// Displaying an array containing each
// value of collection,
// converted to a float value
System.out.println(Arrays
.toString(arr));
}
catch (Exception e) {
System.out.println(e);
}
}
}
输出:
java.lang.NullPointerException
参考: https://google.github.io/guava/releases/19.0/api/docs/com/google/common/primitives/Floats.html#toArray(Java.util.Collection)