2016-05-04 4 views

Antwort

1

einfach:

int size = // ... 
int[][][] array3d = new int[size][][]; 

// let's now store the arrays: 
arrays3d[0] = some2darray; 
// ... 
Verwandte Themen