这是我的问题。
我有一个 A 类,它有一串名称和 int 数字,它们被放入另一个类的 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.