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.
Shorter way is do it as follows:
private char[][] table = {{'1', '2', '3'}, {'4', '5', '6'}, {'7', '8', '9'}};