これが私の問題です。
別のクラスのArrayListに配置される名前の文字列と数値のintを持つクラスAがあります。
タスク:-私がする必要があるのは、arraylistのindex(0)から名を取得し、それを文字列として返すことです。
public class A
{
private String name;
private int num;
public A(String aName, int bNum)
{
name = aName;
num = bNum;
public String getName()
{return name; }
public int getNum()
{return num;}
}
}
//class b inserts elements of class a into arraylist
public class b
{
private ArrayList<A> myList;
}
public b()
myList = new ArrayList<A>;
public void addAll(A all)
{ myList.add(all);}
//get method required for issue above.