Java番石榴 |带有示例的 Longs.asList() 方法
Guava 的 Longs 类的Longs.asList()方法接受一个长数组作为参数,并返回一个具有固定大小的列表。返回的列表由作为参数传递的长数组支持。这意味着在作为参数传递的数组中所做的更改将反映在方法返回的列表中,反之亦然。
句法:
public static List<Long> asList(long… backingArray)
参数:该方法接受一个强制参数backingArray ,它是一个用于支持列表的长数组。
返回值: Longs.asList()方法返回一个固定大小的列表,该列表由作为参数传递给该方法的数组支持。换句话说,该方法返回数组的列表视图。
下面的例子说明了上述方法的实现:
示例 1:
// Java code to show implementation of
// Guava's Longs.asList() method
import com.google.common.primitives.Longs;
import java.util.List;
class GFG {
// Driver's code
public static void main(String[] args)
{
// Creating a Long array
long arr[] = { 1, 2, 3, 4, 5 };
// Using Longs.asList() method to wrap
// the specified primitive Long array
// as a List of the Long type
List myList = Longs.asList(arr);
// Displaying the elements in List
System.out.println(myList);
}
}
输出:
[1, 2, 3, 4, 5]
示例 2:
// Java code to show implementation of
// Guava's Longs.asList() method
import com.google.common.primitives.Longs;
import java.util.List;
class GFG {
// Driver's code
public static void main(String[] args)
{
// Creating a Long array
long arr[] = { 3, 5, 7 };
// Using Longs.asList() method to wrap
// the specified primitive Long array
// as a List of the Long type
List myList = Longs.asList(arr);
// Displaying the elements in List
System.out.println(myList);
}
}
输出:
[3, 5, 7]
参考: https://google.github.io/guava/releases/21.0/api/docs/com/google/common/primitives/Longs.html#asList-long…-