zoukankan      html  css  js  c++  java
  • 容器集合

    怎么给集合内的数按顺序排序
    
    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);
        }
    
    }

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

  • 相关阅读:
    Acrobat dose not allow connection to:
    如何备份sqlite数据库
    Linux下Perl的安装
    Sqlserver取分组后的第一条数据
    JS根据占比计算名次范围
    eltable单元格换行显示,超出部分省略号
    二 前端框架引入、结构分配和路由定义
    扩展运算符(...)
    eltable动态合并行列
    解决table中换行符<br>被字符化得问题
  • 原文地址:https://www.cnblogs.com/F9801/p/9027401.html
Copyright © 2011-2022 走看看