I am trying to initialize a 2D array, in which the type of each element is char. So far, I can only initialize this array in the follow way.
Easy to read/type.
table = new char[][] { "0123456789".toCharArray() , "abcdefghij".toCharArray() };