2
votes
3answers
133 views
C# overloading operator== versus Equals()
I'm working on a C# project for which, until now, I've used immutable objects and factories to ensure that objects of type Foo can always be compared for equality with ==. Foo obje …
2
votes
4answers
199 views
Most compact way to compare three objects for equality using Java?
What's the most compact code to compare three objects for (semantic) equality using Java? I have a business rule that the objects must be unique i.e. A is different to B, A is diff …
0
votes
2answers
69 views
C# - How to override GetHashCode with Lists in object
Hi,
I am trying to create a "KeySet" to modify UIElement behaviour. The idea is to create a special function if, eg. the user clicks on an element while holding a. Or ctrl+a.
My …
3
votes
10answers
172 views
toString(), equals(), and hashCode() in an interface…
So, I have an interface with a bunch of methods that need to be implemented, the method names are irrelevant.
The objects that implement this interface are often put into collecti …
0
votes
2answers
75 views
Java: implementation of notification provider vs. hashCode-driven Map
I have implemented abstract generic provider for notification bunch of generic listeners E, descendants have to override notifyListener(E) with specific notification code. For back …
4
votes
12answers
203 views
Correctly synchronizing equals() in Java
I have the following class which contains only one field i. Access to this field is guarded by the lock of the object ("this"). When implementing equals() I need to lock this insta …
8
votes
11answers
325 views
Force a class to override the .equals method
I have a bunch of class who implement a common interface : Command.
And this bunch of class goes to a Map.
To get the Map working correctly, I need to each class who implements …
1
vote
4answers
209 views
C#: What’s the best way to compare Double and Int?
Hello everybody,
The following code in C# doesn't work:
int iValue = 0;
double dValue = 0.0;
bool isEqual = iValue.Equals(dValue);
So, the question: what's the best way to com …
2
votes
4answers
82 views
Is this a good/efficient idiom for implementing Equals and equality/inequality operators?
I have had a few problems getting this right, so I wanted to ask if anyone has any feedback on whether this is an efficient way to implement the Equals method and equality/inequali …
1
vote
4answers
216 views
whats the difference between “.equals and ==”
i switched lecturers today and he stated using a weird code too me.
he says its better. when i asked why, he asnwered "because it is!"
so much for that.
so heres an example:
if …
1
vote
4answers
183 views
C#: String.Equals vs. ==
I recently was introduced to a large codebase and noticed all string comparisons are done using String.Equals() instead of ==.
What's the reason for this, do you think?
0
votes
4answers
75 views
Does Dictionary.Equals() have an implementation?
Hi all,
I have a Dictionary which I am comparing to another Dictionary (variables typed as IDictionary). Doing d1.Equals(d2) yeilds false. Writing my own code below yields true. …
2
votes
1answer
55 views
Google App Engine, JDO, and equals/hashCode
I've got an app in Google App Engine that was working fine. I realized that one on of my JDO-enhanced objects that I forgot to implement equals and hashCode (I need to use the obje …
4
votes
4answers
173 views
Java: Always override equals?
When writing one's own classes, is it always necessary to override equals(Object o)?
If I don't, will it automatically check that all the fields are the same? Or does it just chec …
3
votes
4answers
132 views
An efficient equals(Object o) implementation
I read this SO post after I wrote out the title but still decided to go through with the question on bug-proof implementations of equals in Java. This is my normal implementation
…
