Hi
I want to create objects of different names. Please check the code below:
for(int i=0;i<noOfObject;i++)
{
System.out.println("Obj Created " + i);
Student (obj+i) = new Student();
}
I get following error
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
The left-hand side of an assignment must be a variable
Any solution to this
