Guava 的Ints.asList()返回指定数组支持的固定大小的列表。
用法:
public static List<Integer> asList(int[] array)
参数:此方法将数组作为参数,这是支持列表的数组。
返回值:此方法返回由指定数组支持的固定大小的列表。
范例1:
// Java code to show implementation of
// Guava's Ints.asList() method
import com.google.common.primitives.Ints;
import java.util.List;
class GFG {
// Driver's code
public static void main(String[] args)
{
// Creating an integer array
int arr[] = { 1, 2, 3, 4, 5 };
// Using Ints.asList() method to wrap
// the specified primitive Integer array
// as a List of the Integer type
List<Integer> myList = Ints.asList(arr);
// Displaying the elements in List
System.out.println("List of given array:"
+ myList);
}
}
输出:
List of given array:[1, 2, 3, 4, 5]
范例2:
// Java code to show implementation of
// Guava's Ints.asList() method
import com.google.common.primitives.Ints;
import java.util.List;
class GFG {
// Driver's code
public static void main(String[] args)
{
// Creating an integer array
int arr[] = { 3, 5, 7 };
// Using Ints.asList() method to wrap
// the specified primitive Integer array
// as a List of the Integer type
List<Integer> myList = Ints.asList(arr);
// Displaying the elements in List
System.out.println("List of given array:"
+ myList);
}
}
输出:
List of given array:[3, 5, 7]
相关用法
- Java Guava Ints min()用法及代码示例
- Java Guava Ints contains()用法及代码示例
- Java Guava Ints max()用法及代码示例
- Java Guava Ints indexOf()用法及代码示例
- Java Guava Ints toArray()用法及代码示例
- Java Guava Ints join()用法及代码示例
- Java Guava Ints lastIndexOf()用法及代码示例
- Java Guava Ints concat()用法及代码示例
- Java Guava Bytes.asList()用法及代码示例
- Java Guava Shorts.asList()用法及代码示例
- Java Guava Booleans.asList()用法及代码示例
- Java Guava Chars.asList()用法及代码示例
- Java Guava Doubles.asList()用法及代码示例
- Java Guava Floats.asList()用法及代码示例
- Java Guava Longs.asList()用法及代码示例
注:本文由纯净天空筛选整理自Sahil_Bansall大神的英文原创作品 Ints asList() function | Guava | Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。