• 容器集合


    怎么给集合内的数按顺序排序
    
    package test2;
    
    public class Book implements Comparable<Book> {
        private String name;
        private double price;
    
        public Book() {
            super();
        }
    
        public Book(String name, double price) {
            super();
            this.name = name;
            this.price = price;
        }
    
        public String getName() {
            return name;
        }
    
        public void setName(String name) {
            this.name = name;
        }
    
        @Override
        public String toString() {
            return "Book [name=" + name + ", price=" + price + "]";
        }
    
        @Override
        public int hashCode() {
            final int prime = 31;
            int result = 1;
            result = prime * result + ((name == null) ? 0 : name.hashCode());
            return result;
        }
    
        @Override
        public boolean equals(Object obj) {
            if (this == obj)
                return true;
            if (obj == null)
                return false;
            if (getClass() != obj.getClass())
                return false;
            Book other = (Book) obj;
            if (name == null) {
                if (other.name != null)
                    return false;
            } else if (!name.equals(other.name))
                return false;
            return true;
        }
    
        public double getPrice() {
            return price;
        }
    
        public void setPrice(double price) {
            this.price = price;
        }
    
        @Override
        public int compareTo(Book o) {
            if (this.price > o.getPrice()) {
                return 1;
            }
            if (this.price == o.getPrice()) {
                return 0;
            }
            return -1;
        }
    }
    package test2;
    
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.List;
    
    /**
     * Comparable
     * @author Administrator
     */
    public class Test6 {
    
        public static void main(String[] args) {
            List<Book> list = new ArrayList<Book>();
            list.add(new Book("Java从入门到放弃", 78));
            list.add(new Book("Oracle数据库详解", 56));
            list.add(new Book("HTML入门", 3));
            list.add(new Book("三国演义", 108));
            Collections.sort(list);
            Collections.reverse(list);
            
            System.out.println(list);
        }
    
    }

    这样就可以按照书本后面的标价进行排序,从而获得一个价格从高到低的数组集合。

  • 相关阅读:
    服务器带宽
    nload 源码安装
    Error: rpmdb open failed
    宽带,带宽,网速
    使用speedtest-cli测量服务器带宽
    ubuntu 安装 iperf
    微信退款机制
    记录程序执行之间,接口调用时间到日志文件或数据库
    机智的查询
    如果一些复杂的数据查询不好用数组,那就用字符串拼接,灵活方便
  • 原文地址:https://www.cnblogs.com/F9801/p/9027401.html
Copyright © 2020-2023  润新知