Skip to content
Advertisement

How to dynamically declare shape of an Array in Java?

I am working with an API where I need to provide a Object[], Object[][], Object[][][]… you get the idea.

Assume setFoo requires an Object[], this is how I get it to work:

JavaScript

And this is how I make Object[][] requirement work, so that I can call setBar..

JavaScript

The problem is, I am not able to figure out how to create the Object[][][] dynamically.. Is there a way to do this in Java? If I can make this final Object[][] objects = new Object[surroundingList.size()][1]; dynamic I should be in good hands.

Advertisement

Answer

You can’t do this with static code. The Java syntax and (compile time) type system doesn’t support the declaration or construction of arrays with indefinite dimensions.

You can create arrays with arbitrary dimensions using reflection; e.g.

JavaScript

But the problem is that if you go down the path, you are liable to end up:

  • doing lots of casting to types with definite dimensions (see typedArray above), and / or

  • doing operations on the arrays using messy reflective code.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement