Please help me with this below code.
I have three questions regarding array of objects that I have underlined below.
class ABC{
int a,b;
public static void main(String[] args){
ABC obj1 = new ABC(); // LINE-1
ABC obj[] = new ABC[5]; // LINE-2
obj[0] = new ABC();
obj[1] = new ABC();
}
}
After execution of LINE-1, memory allocation will be done for obj1 and reference will be assigned to obj1.
After execution of LINE-2 what will be stored in obj? Why do we have to re-allocate the memory for each and every object that we’ve created through LINE-2.Because that was not the case in C++.In C++ what was happening that If we’re creating an Array of objects through new operator then there is no need to re-allocate the memory for each and every object.

and my third question is, If we’re re-allocating the memory for every object then will they be contiguous in memory?