I would like to know if in both cases the MyObject object is created. And if not, why do both cases work just fine?
MyObject[] abcd = new MyObject[8];
abcd[0] = MyObject();
String str = abcd[0].someMethod();
and
MyObject[] abcd = new MyObject[8];
String str = abcd[0].someMethod();
I know that in the first example, a MyObject array is created with 8 elements and stored in the reference variable of that array called abcd. I have an array of MyObject references but no actualy MyObject objects. So I create these objects and the first object is stored in array 0.
In the second example.. is it the same thing, just shorter code?
*EDITED: Forgot to add [] I apologize. *
abcd[0] = MyObject();? Does it compile? – gefei Jan 11 at 10:55new MyObject(). – Polynomial Jan 11 at 10:55