为什么我收到这个结果? JAVA

时间:2016-02-05 00:23:39

标签: java sorting object arraylist comparator

我正在学习使用Comparators,我在执行程序时在控制台中得到一个非常奇怪的结果:

我定义了一个名为Zapato的对象,其属性的值在被询问给用户后通过参数传递:

public class Zapato {

    int talla;
    String color;
    int precio;

    public Zapato (int talla,String color,int precio){
        this.talla = talla;
        this.color = color;
        this.precio = precio;
    }

}

然后我根据颜色或价格创建了一些比较器。

public class OrdenarPorColor implements Comparator<Zapato>{

    @Override
    public int compare(Zapato z1, Zapato z2) {

        return z1.color.compareTo(z2.color);
    }
}

在Main中我要求值,创建3个对象并将它们保存在ArrayList上。然后用户必须选择比较模式并调用所选比较模式的类,并在对列表进行排序后,将其打印出来排序的3个对象:

//Before this there is code repeated where I ask the values for the other 2 objects
 System.out.println("Introduzca la talla,el color y la talla de los zapatos: ");
        System.out.println("Talla: ");
        talla = Integer.parseInt(sc.nextLine());
        System.out.println("Color: ");
        color = sc.nextLine();
        System.out.println("Precio: ");
        precio = Integer.parseInt(sc.nextLine());

        listaZapatos.add(new Zapato(talla,color,precio));
        System.out.println("Zapato introducido es: " + listaZapatos.get(2));


        System.out.println("Escriba la opcion para comparar:");
        System.out.println("1-Por talla\n2-Por color\3-Por precio");
        System.out.println("Opcion: ");

        int opcion = sc.nextInt();

        switch (opcion){

            case 1:
                Collections.sort(listaZapatos,new OrdenarPorTalla());
                System.out.println(listaZapatos);
                break;
            case 2:
                Collections.sort(listaZapatos,new OrdenarPorColor());
                System.out.println(listaZapatos);
                break;
            case 3:
                Collections.sort(listaZapatos,new OrdenarPorPrecio());
                System.out.println(listaZapatos);
                break;
        }

        return;

但是当程序打印出 System.out.println(listaZapatos) 时,它应该显示为

45 Rosa 32,56 Azul 21,34 Verde 46

但我在控制台上收到了这个:

[Main.Zapato@2ff4acd0,Main.Zapato@279f2327,Main.Zapato@54bedef2]

每当我在 System.out.println(&#34; Zapato introductioncido es:&#34; + listaZapatos)中请求时,我会打印使用引入值创建的对象。得到(2)) 所以我收到这样的话:

Main.Zapato@2ff4acd0

1 个答案:

答案 0 :(得分:3)

您需要覆盖Zapato类中的toString实现。打印集合时,该方法将在内部对该集合中的每个对象调用toString()。默认的toString实现为您提供所需的数据。

这样的事情会有所帮助:

@Override
public String toString()
{
    return color + ":" + talla;
}

Zapato班级