zoukankan      html  css  js  c++  java
  • EqualsBuilder 类的使用

    apache的commons-lang包提供了一个EqualsBuilder类,提供了基本属性、数组、对象等比较操作的封装,可以辅助实现对象的equals(Object)方法。

    这个类的使用比较简单,官方API文档中提供了一个典型示例:


    public boolean equals(Object o) {
            if (this == o) {
                return true;
            }
            if (o == null || getClass() != o.getClass()) {
                return false;
            }
            KpiTemplateModel that = (KpiTemplateModel) o;
            return new EqualsBuilder()
                    .append(kpi, that.kpi)
                    .append(kpiType, that.kpiType)
                    .append(dbType, that.dbType)
                    .isEquals();
        }
  • 相关阅读:
    CodeForces 656B
    时间限制
    哈哈
    &1的用法
    codeforces 385 c
    hdu 1176 免费馅饼
    poj 1114 完全背包 dp
    poj 1115 Lifting the Stone 计算多边形的中心
    jar包解压
    重定向
  • 原文地址:https://www.cnblogs.com/jing1617/p/7054282.html
Copyright © 2011-2022 走看看