Guava Chars.asList()方法与实例
The Chars.asList() Guava的Chars类的方法接受一个 char array 作为参数,并返回一个具有固定大小的列表。返回的列表是由作为参数传递的char数组支持的。这意味着作为参数传递的数组的变化将反映在方法返回的列表中,反之亦然。
语法:
public static List< Character > asList(char… backingArray)
参数: 该方法接受一个强制参数 backingArray ,这是一个用来支持列表的char数组。
返回值: Chars.asList()方法返回一个固定大小的列表,该列表由作为该方法参数的数组支持。换句话说,该方法返回数组的列表视图。
下面的例子说明了上述方法的实现。
示例1:
// Java code to show implementation of
// Guava's Chars.asList() method
import com.google.common.primitives.Chars;
import java.util.List;
class GFG {
// Driver's code
public static void main(String[] args)
{
// Creating a Char array
char arr[] = { 'a', 'b', 'c' };
// Using Chars.asList() method to wrap
// the specified primitive Char array
// as a List of the Char type
List<Character> myList = Chars.asList(arr);
// Displaying the elements in List
System.out.println(myList);
}
}
输出:
[a, b, c]
示例2:
// Java code to show implementation of
// Guava's Chars.asList() method
import com.google.common.primitives.Chars;
import java.util.List;
class GFG {
// Driver's code
public static void main(String[] args)
{
// Creating a Char array
char arr[] = { 'H', 'E', 'L', 'L', 'O' };
// Using Chars.asList() method to wrap
// the specified primitive Char array
// as a List of the Char type
List<Character> myList = Chars.asList(arr);
// Displaying the elements in List
System.out.println(myList);
}
}
输出:
[H, E, L, L, O]
参考: https://google.github.io/guava/releases/18.0/api/docs/com/google/common/primitives/Chars.html#asList(char…)