Is it possible to put an array inside of a two dimensional array? For explanation: I need a two-dimensional byte array, but I also need three byte values for each cell. It could look like this:
+-------------+-------------+
| 123,234,125 | 255,109,167 |
+-------------+-------------+
| 172,144,134 | 145,212,124 |
+-------------+-------------+
Or in a more appropriate format:
[ [ [ 123,234,125 ] , [ 255,109,167 ] ] , [ [ 172,144,134 ] , [ 145,212,124 ] ] ]
This would be a two-dimensional array containing arrays of three bytes. Is this possible in Java?