Java Compare

2021-04-20 09:28

阅读:376

标签:static   ide   ble   tor   name   rgs   --   http   attention   

技术图片


技术图片

Comparable

技术图片


技术图片

// Goods.java

import java.util.Arrays;

public class Goods implements Comparable {
    private String name;
    private double price;

    public Goods() {
    }

    public Goods(String name, double price) {
        this.name = name;
        this.price = price;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public double getPrice() {
        return price;
    }

    public void setPrice(double price) {
        this.price = price;
    }

    @Override
    public String toString() {
        return "Goods{" +
                "name=‘" + name + ‘\‘‘ +
                ", price=" + price +
                ‘}‘;
    }

    @Override
    public int compareTo(Object o) {
        if(o instanceof Goods){
            Goods goods = (Goods) o;
            if(this.price 

Comparator

技术图片

ATTENTION : Comparator 一般用于在Arrays.sort() 或 Collections.sort()中以匿名实现类的方式使用

 @Test
    public void test1(){
        String[] arrs = new String[]{"XZZ", "BB", "AA", "CC", "JJ", "DD", "EE"};
        Arrays.sort(arrs, new Comparator() {
            @Override
            public int compare(String o1, String o2) {
                if(o1 instanceof String && o2 instanceof String){
                    String s1 = (String)o1;
                    String s2 = (String)o2;
                    return -s1.compareTo(s2); // there is a minus symbol, sort by down
                }
                throw new RuntimeException("Unacceptable Type");
            }
        });
        System.out.println(Arrays.toString(arrs)); // the output is : [XZZ, JJ, EE, DD, CC, BB, AA]
    }

Java Compare

标签:static   ide   ble   tor   name   rgs   --   http   attention   

原文地址:https://www.cnblogs.com/nedrain/p/13285391.html


评论


亲,登录后才可以留言!