質問

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