码迷,mamicode.com
首页 > Web开发 > 详细

apache commons工具包

时间:2016-10-10 01:53:30      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

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工具包

标签:

原文地址:http://www.cnblogs.com/westward/p/5944304.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!