Java's collection frameworks such as set, map, and list do not provide any convenient methods for initialization. Every time you create a collection, you have to add the values one by one. like
Copy the code code as follows:
Set<Character> letter=new HashSet<Character>();
letter.add('a');
letter.add('b');
//...
Very tedious.
But with anonymous inner classes. Could be a little simpler.
Copy the code code as follows:
Set<Character> letter=new HashSet<Character>()
{
{
add('a'); add('b'); add('c'); add('d');
add('e'); add('f'); add('g'); add('h');
add('i'); add('j'); add('k'); add('l');
add('m'); add('n'); add('o'); add('p');
add('q'); add('r'); add('s'); add('t');
add('u'); add('v'); add('w'); add('x');
add('y'); add('z');
add('A'); add('B'); add('C'); add('D');
add('E'); add('F'); add('G'); add('H');
add('I'); add('J'); add('K'); add('L');
add('M'); add('N'); add('O'); add('P');
add('Q'); add('R'); add('S'); add('T');
add('U'); add('V'); add('W'); add('X');
add('Y'); add('Z');
}
}; //The first level of brackets defines anonymous inner classes, and the second level is the initialization module