VOOZH about

URL: https://www.geeksforgeeks.org/java/java-guava-chars-aslist-method-with-examples/

⇱ Java Guava | Chars.asList() method with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Java Guava | Chars.asList() method with Examples

Last Updated : 11 Jul, 2025
The Chars.asList() method of Guava's Chars Class accepts a char array as a parameter and returns a list which has the fixed size. The returned list is backed by the char array which is passed as the argument. It means the changes made in the array passed as parameter will be reflected back in the list returned by the method and vice-versa. Syntax:
public static List<Character> asList(char... backingArray)
Parameter: The method accepts a mandatory parameter backingArray which is a char array that is used to back the list. Return Value: The method Chars.asList() returns a fixed-size list which is backed by the array passed as the argument to the method. In other words, the method returns the list view of the array. Below examples illustrate the implementation of above method: Example 1:
Output:
[a, b, c]
Example 2:
Comment