class JTest { static class REC {} public JTest() { REC[][] ccooll = new REC[16][32]; for(int i = 0; i < ccooll.length; i++) for(int j = 0; j < ccooll[i].length; j++) ccooll[i][j] = new REC(); } }