SyntaxFix
Write A Post
Hire A Developer
Questions
Use Arrays class in Java which will return you an ArrayList :
Arrays
ArrayList
final List<String> characters = Arrays.asList("+","-");
You will need a bit more work if you need a List<Character>.
List<Character>