문제

Can I use Apache BeanUtils to compare two objects and establish if they're equal (If they have the same member variables and values assigned to them)? If so, how? If not, is there an alternative library that I can use?

Something like:

public Boolean theSame(Object object1, Object object2) {
   //If object1 member variables and values = object2 member variables and values:
   return true;
}
도움이 되었습니까?

해결책

다른 팁

Maybe you want to check on this [Comparator] (http://www.tutorialspoint.com/java/java_using_comparator.htm)

Override the .equals() method in your class.

@Override
public boolean equals(Object object) {
      //If object1 member variables and values = object2 member variables and values:
   return true;
}

Note: You will need to override the hashCode() method as well if you want to use the objects as a key in a HashMap, HashTable, or in a Set.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top