Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a quick question - is it possible to compare two objects of the same class in Drools? And if yes, how do I distinguish between the two objects?

share|improve this question
Please give more detail on your question. Are both objects asserted into working memory? Or are they contained in another object, which has been asserted into working memory. – Perception Jul 14 '11 at 12:38

1 Answer

Yes.

first : Object()
second : Object( this != first )

first and second are of the same class, but different instances.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.