Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

84
votes
21answers
57k views

Case insensitive string comparison in C++

What is the best way of doing case insensitive string comparison in C++ with out transforming a string to all upper or lower case? Also, what ever methods you present, are they Unicode friendly? Are ...
39
votes
2answers
7k views

Operator Overloading with Interface-Based Programming in C#

Background I am using interface-based programming on a current project and have run into a problem when overloading operators (specifically the Equality and Inequality operators). Assumptions ...
30
votes
5answers
11k views

C# difference between `==` and .Equals()

I have a condition in a silverlight application that comapres 2 strings, for some reason when I use '==' it returns false while .Equals() returns true. Here is the code : if ...
26
votes
10answers
15k views

Any reason to prefer getClass() over instanceof when generating .equals()?

I'm using Eclipse to generate .equals() and .hashCode(), and there is an option labeled "Use 'instanceof' to compare types". The default is for this option to be unchecked and use .getClass() to ...
22
votes
4answers
23k views

Overriding the java equals() method quirk

I ran into an interesting (and very frustrating) issue with the equals() method today which caused what I thought to be a well tested class to crash and cause a bug that took me a very long time to ...
21
votes
7answers
591 views

Why can't I “static import” an “equals” method in Java?

I like using this method here: org.apache.commons.lang.ObjectUtils.equals(Object object1, Object object2) The only drawback (compared to Google Guava, for instance), is that I cannot static import ...
21
votes
4answers
3k views

apache commons equals/hashcode builder

I'm curious to know, what people here think about using org.apache.commons.lang.builder EqualsBuilder/HashCodeBuilder for implementing the equals/hashcode? Would it be a better practice than writing ...
21
votes
10answers
1k views

Is it a bad idea if equals(null) throws NullPointerException instead?

The contract of equals with regards to null, is as follows: For any non-null reference value x, x.equals(null) should return false. This is rather peculiar, because if o1 != null and o2 == null, ...
21
votes
6answers
8k 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?
20
votes
7answers
461 views

Why are two AtomicIntegers never equal?

I stumbled across the source of AtomicInteger and realized that new AtomicInteger(0).equals(new AtomicInteger(0)) equals false. Why is this? Is it some "defensive" design choice related to ...
20
votes
6answers
494 views

Should mutable collections override equals and hashCode?

I was just wondering if it was a good idea to override equals and hashCode for mutable collections. This would imply that if I insert such a collection into a HashSet and then modify the collection, ...
17
votes
6answers
1k views

Best practices regarding equals: to overload or not to overload?

Consider the following snippet: import java.util.*; public class EqualsOverload { public static void main(String[] args) { class Thing { final int x; Thing(int x) ...
16
votes
3answers
1k views

What's the difference between IEquatable and just overriding Object.Equals()?

I want my Food class to be able to test whenever it is equal to another class. I will later use it against a List, and I want to use its List.Contains() method. Should I implement IEquatable or just ...
16
votes
9answers
2k views

How to ensure hashCode() is consistent with equals()?

When overriding the equals() function of java.lang.Object, the javadocs suggest that, "it is generally necessary to override the hashCode method whenever this method is overridden, so as to ...
15
votes
3answers
258 views

TypeDelegator equality inconsistency?

Consider the following code: class MyType : TypeDelegator { public MyType(Type parent) : base(parent) { } } class Program { static void ...
14
votes
4answers
1k views

Why does `Array(0,1,2) == Array(0,1,2)` not return the expected result?

As far as I understand, Scala's == defines the natural equality of two objects. I expected that Array(0,1,2) == Array(0,1,2) compares the natural equality e. g. checks if all elements of the array ...
14
votes
8answers
1k views

Why are these == but not `equals()`?

I'm a bit confused about the way Java treats == and equals() when it comes to int, Integer and other types of numbers. For example: Integer X = 9000; int x = 9000; Short Y = 9000; short y = 9000; ...
14
votes
5answers
2k views

Overriding GetHashCode for mutable objects? [C#]

I've read about 10 different questions on when and how to override GetHashCode but there's still something I don't quite get. Most implementations of GetHashCode are based on the hash codes of the ...
12
votes
11answers
2k 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 Command to override ...
12
votes
9answers
4k views

Is there a Java reflection utility to do a deep comparison of two objects?

I'm trying to write unit tests for a variety of clone() operations inside a large project and I'm wondering if there is an existing class somewhere that is capable of taking two objects of the same ...
12
votes
12answers
2k views

When “” == s is false but “”.equals( s ) is true

EDIT Thanks for the promptly responses. Please see what the real question is. I have make it bold this time. I do understand the difference between == and .equals. So, that's not my question ( I ...
11
votes
3answers
646 views

Comparing One Value To A Whole Array? (C#)

Let's say I have a C# variable and array: int variable_1 = 1; int[3] array_1 = {1,2,3}; How can I check if the value of variable_1 is equal to any of the values in array_1 without looping through ...
11
votes
3answers
1k views

Java: clean way to automatically throw UnsupportedOperationException when calling hashCode() and equals()?

We've got an OO codebase where in quite a lot of cases hashcode() and equals() simply don't work, mostly for the following reason: There is no way to extend an instantiable class and add a value ...
11
votes
8answers
10k views

Java Strings: compareTo() vs. equals()

When testing for equality of strings in Java I have always used equals() because to me this seems to be the most natural method for it. After all, its name already says what it is intended to do. ...
11
votes
5answers
2k views

Is there a complete IEquatable implementation reference?

Many of my questions here on SO concerns IEquatable implementation. I found it being extremely difficult to implement correctly, because there are many hidden bugs in the naïve implementation, and the ...
11
votes
2answers
3k views

Linq: What is the difference between == and equals in a join?

I always wondered why there's an equals keyword in linq joins rather than using the == operator. Property deadline = (from p in properties join w in widgets on p.WidgetID equals w.ID select ...
10
votes
8answers
239 views

Why equals and hashCode were defined in Object?

What's the reasoning behind decision to include these methods in the java.lang.Object? Equality and hashing doesn't make sense for many classes. It would be more logical to make two interfaces: ...
10
votes
6answers
1k views

Hows to quick check if data transfer two objects have equal properties in C#?

I have these data transfer objects objects: public class Report { public int Id { get; set; } public int ProjectId { get; set; } //and so on for many, many properties. } I don't want ...
9
votes
4answers
123 views

Implementing equals and hashCode for objects with circular references in Java

I have two classes defined such that they both contain references to the other object. They look similar to this (this is simplified; in my real domain model class A contains a list of B and each B ...
9
votes
2answers
205 views

GetHashCode and Equals are implemented incorrectly in System.Attribute?

Seeing from Artech's blog and then we had a discussion in the comments. Since that blog is written in Chinese only, I'm taking a brief explanation here. Code to reproduce: ...
9
votes
4answers
267 views

What is Type.GUID and how does it relate to Type.Equals()?

I came across some interesting behavior while trying to compare an instance of System.RuntimeType with a generic type TOut: Type runtimeT = methodInfo.ReturnType; // get RuntimeType using reflection ...
9
votes
1answer
921 views

C# - compare two SecureStrings for equality

I have a WPF application with two PasswordBoxes, one for the password and another for the password to be entered a second time for confirmation purposes. I was wanting to use ...
9
votes
6answers
1k views

How default .equals and .hashCode will work for my objects?

Say I have my own object public class MyObj { ... } It has some attributes and methods. It DOES NOT implement equals, DOES NOT implement hashCode. Once we call equals and hashCode, what are the ...
9
votes
5answers
2k views

Compare two List<T> objects for equality, ignoring order

Yet another list-comparing question. List<MyType> list1; List<MyType> list2; I need to check that they both have the same elements, regardless of their position within the list. Each ...
9
votes
4answers
781 views

How to override the (final) equals method in java enums?

I have a problem with overriding the equals method in an Enum to make it compatible with other classes. The Enum implements an interface and the idea is that all implementations of this interface can ...
9
votes
5answers
466 views

Why returning false ? new Person(“james”) == new Person(“james”)?

I have override GetHashCode and Equals and both methods provide same results for different objects but why still getting false ? class Program { static void Main(string[] args) { ...
9
votes
4answers
320 views

What does == do in Ruby?

In Java, == is the strongest kind of equality (pointer equality): a == b always implies a.equals(b). However, in Ruby, == is weaker than .equals?: ruby-1.9.2-rc2 > 17 == 17.0 => true ...
9
votes
4answers
276 views

C# == operator in Immediate window behaves differently than at run-time

Try the following in the Immediate window: object a1 = "a"; object a2 = "a"; a1==a2 // outputs false and you'll see that a1 == a2 outputs false. However, at runtime in either a window app or ...
9
votes
3answers
2k views

C#: How does the static object.Equals check for equality?

Say you have two different classes where each have their own implementation of Equals; which one is used? What if only one of them have one? Or none of them? Are any of the following lines equivalent? ...
9
votes
1answer
698 views

Assert.ReferenceEquals() Passes where Object.ReferenceEquals() returns 'false' in Visual Studio Test

In attempting to create an initial, failing unit test in Visual Studio Professonal 2008's test capabilities, I can't seem to get Assert.ReferenceEquals() to correctly fail when an object instance is ...
8
votes
1answer
124 views

Scala: lightweight way to put Arrays in a Set or Map

Since == does not work with Arrays, I cannot effectively create a Set of Arrays (or Map with Array keys). I would rather not take the performance hit of converting my Arrays to a Vector or List or ...
8
votes
7answers
292 views

Java: Use hashCode() inside of equals() for convenience?

Consider the following test case, is it a bad practice to use the hashCode() method inside of equals as a convenient shortcut? public class Test { public static void main(String[] args){ ...
8
votes
4answers
347 views

Determine if System Clipboard Images are equal

I am not sure if my problem is platform specific, but I think it is not. Because my expirience is based on the Windows specific java.awt.Toolkit and the Windows-Clipboard. The following example class ...
8
votes
4answers
271 views

What is the difference between Java's equals() and C++'s operator ==?

In a question regarding the use of typeid is C++, I suggested it could be used to compare types in objects comparison. I haven't seen it done much, but I had Java's equals in mind. Looking into Java ...
8
votes
1answer
505 views

Create the perfect JPA entity

I've been working with JPA (implementation Hibernate) for some time know and each time I need to create entities I find myself struggling with issues as AccessType, immutable properties, ...
8
votes
8answers
339 views

Java: Clean way of avoiding NullPointerException in equals checks

I have an address object that I want to create an equals method for. I could have made this quite simple by doing something like the following (shortened a bit): public boolean equals(Object obj) { ...
8
votes
3answers
247 views

C# GetHashCode question

What would be the best way to override the GetHashCode function for the case, when my objects are considered equal if there is at least ONE field match in them. In the case of generic Equals method ...
8
votes
5answers
477 views

c# NaN comparison differences between Equals() and ==

Check this out : var a = Double.NaN; Console.WriteLine(a == a); Console.ReadKey(); Prints "False" var a = Double.NaN; Console.WriteLine(a.Equals(a)); Console.ReadKey(); ...
8
votes
1answer
568 views

What code is generated for an equals/hashCode method of a case class?

I have some Java code which I'm translating to Scala. The code consists of some immutable classes which would fit the purpose of a case class in Scala. But I don't want to introduce bugs, therefore ...
8
votes
1answer
514 views

How can I get checkstyle to skip equals() and hashcode() methods generated by eclipse?

Our project contains several classes that we have equals() and hashCode() methods generated by Eclipse (Right Click -> Source -> Generate hashCode() and equals()). Example: @Override public ...

1 2 3 4 5 12