Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Initialize 2D array

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.

public class ticTacToe  { private char[][] table;  public ticTacToe() {     table[0][0] = '1';     table[0][1] = '2';     table[0][2] = '3';     table[1][0] = '4';     table[1][1] = '5';     table[1][2] = '6';     table[2][0] = '7';     table[2][1] = '8';     table[2][2] = '9'; } } 

I think if the array is 10*10, it is the trivial way. Is there any efficient way to do that?

like image 313
Justin Avatar asked Dec 12 '12 04:12

Justin


People also ask

What is initialization of 2D array in C?

Initialization of 2D Array There are two ways to initialize a two Dimensional arrays during declaration. int disp[2][4] = { {10, 11, 12, 13}, {14, 15, 16, 17} }; OR. int disp[2][4] = { 10, 11, 12, 13, 14, 15, 16, 17};

How do you initialize 2D?

On the other hand, to initialize a 2D array, you just need two nested loops. 6) In a two dimensional array like int[][] numbers = new int[3][2], there are three rows and two columns. You can also visualize it like a 3 integer arrays of length 2.

What is 2D array How is a 2D array initialize?

A two-dimensional array in C can be thought of as a matrix with rows and columns. The general syntax used to declare a two-dimensional array is: A two-dimensional array is an array of several one-dimensional arrays. Following is an array with five rows, each row has three columns: int my_array[5][3];


1 Answers

Shorter way is do it as follows:

private char[][] table = {{'1', '2', '3'}, {'4', '5', '6'}, {'7', '8', '9'}}; 
like image 181
Bhesh Gurung Avatar answered Sep 24 '22 13:09

Bhesh Gurung