how to you create an array from an array of ojects code example
Example 1: java array object
Class obj[]= new Class[array_length]
Example 2: java array object
class ObjectArray{
public static void main(String args[]){
Account obj[] = new Account[2] ;
obj[0].setData(1,2);
obj[1].setData(3,4);
System.out.println("For Array Element 0");
obj[0].showData();
System.out.println("For Array Element 1");
obj[1].showData();
}
}
class Account{
int a;
int b;
public void setData(int c,int d){
a=c;
b=d;
}
public void showData(){
System.out.println("Value of a ="+a);
System.out.println("Value of b ="+b);
}
}