Java List diplay

时间:2018-04-02 05:51:14

标签: java arrays list

我有以下方法

private List<Utente> elencoUtenti() {
    List<Utente> utenti = new ArrayList<Utente>();    
    utenti.add(new Utente("Piero", "Bianchi", 45, "Roma", "info@pierobianchi.it", "test"));
    utenti.add(new Utente("Mario", "Rossi", 40, "Roma", "info@mariorossi.it", "test"));
    return utenti;
}

我想显示列表的内容,但我不知道如何在一个数组框中使用多个字符串。 我的意思是,utenti [0]应该包含 &#34; Piero&#34;,&#34; Bianchi&#34;,45,&#34; Roma&#34;,&#34; info@pierobianchi.it" ;,&#34; test&#34; 如何在Java中显示? BR 微米。

1 个答案:

答案 0 :(得分:0)

覆盖toString

private List<Utente> elencoUtenti() {
    List<Utente> utenti = new ArrayList<Utente>();

    utenti.add(new Utente("Piero", "Bianchi", 45, "Roma", "info@pierobianchi.it", "test"));
    utenti.add(new Utente("Mario", "Rossi", 40, "Roma", "info@mariorossi.it", "test"));


    return utenti;
}
@Override
    public String toString() {
        return "Utente{" +
                "firstname=" + id +
                ", name='" + name + '\'' +
                ", email='" + email + '\'' +
                ", emps=" + emps +
                '}';
    }
public static void main(String args[]) {
    List<Utente> li = elencoUtenti();
    for(Utente u : li) {
        System.out.println(u);
    }
}