Since arrays are objects in java, and objects should be instantiated with the "new" keyword, I wonder how is it possible then to instantiate an array without using the new keyword, for example:
int[]test = {33,44,55};
Since arrays are objects in java, and objects should be instantiated with the "new" keyword, I wonder how is it possible then to instantiate an array without using the new keyword, for example:
int[]test = {33,44,55};