zoukankan      html  css  js  c++  java
  • 通过Comparable来实现对自身的比较

    import org.apache.commons.lang.builder.CompareToBuilder;
    import org.apache.commons.lang.builder.EqualsBuilder;
    import org.apache.commons.lang.builder.HashCodeBuilder;
    import org.apache.commons.lang.builder.ToStringBuilder;
    import org.apache.commons.lang.builder.ToStringStyle;
     
    /**
     * The Class Book.
     */
    public class Book implements Comparable<book> {
     
     /** The id. */
     private long id;
     
     /** The name. */
     private String name;
     
     /**
      * Instantiates a new book.
      */
     public Book() {
     }
     
     /**
      * Gets the id.
      *
      * @return the id
      */
     public long getId() {
      return id;
     }
     
     /**
      * Sets the id.
      *
      * @param id
      *            the new id
      */
     public void setId(long id) {
      this.id = id;
     }
     
     /**
      * Gets the name.
      *
      * @return the name
      */
     public String getName() {
      return name;
     }
     
     /**
      * Sets the name.
      *
      * @param name
      *            the new name
      */
     public void setName(String name) {
      this.name = name;
     }
     
     /*
      * (non-Javadoc)
      *
      * @see java.lang.Comparable#compareTo(java.lang.Object)
      */
     public int compareTo(Book o) {
      return new CompareToBuilder().append(this.getId(), o.getId()).toComparison();
     }
    }
  • 相关阅读:
    Ubuntu下ClickHouse安装
    redis.conf配置详解(转)
    php使用sftp上传文件
    ubuntu下安装nginx1.11.10
    cookie和session的区别
    linux下Redis主从复制
    linux-ubuntu 安装配置Redis
    php的常量
    Ubuntu防火墙配置
    技术资料
  • 原文地址:https://www.cnblogs.com/frankyou/p/10593551.html
Copyright © 2011-2022 走看看