如何返回对象的数组列表

时间:2019-02-19 20:27:30

标签: java object arraylist

我在名为Room的类中有一个ArrayList,其中包含Character对象。我希望能够打印出一份描述,以列出房间中的角色。我在字符类中创建了一个toString方法,该方法将返回字符的名称,但无法从Room类使其工作。我是编程新手,仍然可以使用数组,对您有所帮助!

这是将字符添加到“房间”数组列表中的addCharacter方法。

 public void addCharacter(Character c)
{
    assert c != null : "Room.addCharacter has null character";
    charInRoom++;
    charList.add(c); 
    System.out.println(charList);

    // TO DO
}

这里是getLongDescription()类,我可以用它来打印房间中的字符列表。 (这是我遇到麻烦的方法。)

public String getLongDescription()
{
    return "You are " + description + ".\n" + getExitString() 
    + "\n" + charList[].Character.toString;  // TO EXTEND
}

这是Character类中的toString方法。此方法有效。

public String toString()
{
    //If not null (the character has an item), character 
    //and item description will be printed.
    if(charItem != null){
        return charDescription +" having the item " + charItem.toString();
    }
    //Otherwise just print character description.
    else {
        return charDescription;
    }

}

1 个答案:

答案 0 :(得分:1)

在使用List<Character>时,并且已经实现了自定义toString方法,则只需调用characters.toString()

public String getLongDescription() {
    return "You are " + description + ".\n" + getExitString() 
    + "\n" + characters; // toString implicitly called.
}

ArrayList#toString方法将仅调用每个元素的toString

public String toString() {
    Iterator<E> it = iterator();
    if (! it.hasNext())
        return "[]";
    StringBuilder sb = new StringBuilder();
    sb.append('[');
    for (;;) {
        E e = it.next();                                 // Get the element
        sb.append(e == this ? "(this Collection)" : e);  // Implicit call to toString
        if (! it.hasNext())
            return sb.append(']').toString();
        sb.append(',').append(' ');
    }
}