Assuming we have a defined class named Body and we want to create an instance of that class, what is the difference between the two following declarations:
Body a1;
Body a1 = new Body();
Assuming we have a defined class named Body and we want to create an instance of that class, what is the difference between the two following declarations:
Body a1;
Body a1 = new Body();