apache commons工具包

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apache commons工具包相关的知识,希望对你有一定的参考价值。

javqa中,有时候,我们需要重写类的hashCode()和toString()方法,自己去实现,太麻烦。

我们可以用apache的commons工具类来实现。

hashCode():

@override
public int hashCode(){
  return new HashCodeBuilder().append(name).toHashCode();
}

toString():

@override
public String toString(){
  return String.format("%s.name=%s",this.getClass,name);      
}

 

以上是关于apache commons工具包的主要内容,如果未能解决你的问题,请参考以下文章

编写更少量的代码:使用apache commons工具类库

日志片段,类中的Logfactory声明

关于Apache Commons-Lang3的使用

Apache Commons CLI 开发命令行工具示例

apache commons工具包

Apache Commons CLI