Tagged Questions
The gethashcode tag has no wiki summary.
183
votes
8answers
12k views
What is the best algorithm for an overridden System.Object.GetHashCode?
In .NET System.Object.GetHashCode method is use in a lot of places throughout the .NET base class libraries. Especially when finding items in a collection fast or to determine equality. Is there a ...
25
votes
4answers
4k views
Default implementation for Object.GetHashCode()
Does anyone know or have an idea on how the default implementation for GetHashCode() works? And does it handle structures, classes, arrays, etc efficiently and well enough?
Trying to decide under ...
18
votes
8answers
8k views
.NET unique object identifier
Is there any way of getting an unique identifier of an instance?
GetHashCode() is same for 2 references pointing to the same instance. However, 2 different instances can (quite early) get same hash ...
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 ...
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 ...
10
votes
4answers
1k views
Is it possible to combine hash codes for private members to generate a new hash code?
I have an object for which I want to generate a unique hash (override GetHashCode()) but I want to avoid overflows or something unpredictable.
The code should be the result of combining the hash ...
10
votes
3answers
981 views
Do I need to override GetHashCode() on reference types?
I read most questions on StackOverflow with regards to GetHashCode. But I am still not sure whether I have to override GetHashCode on reference types. I picked up the following from someones answer in ...
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
147 views
C# .NET GetHashCode function question
Hi I have a class with 6 string properties. A unique object will have different values for atleast one of these fields
To implement IEqualityComparer's GetHashCode function, I am concatenating all 6 ...
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
458 views
Why might a System.String object not cache its hash code?
A glance at the source code for string.GetHashCode using Reflector reveals the following (for mscorlib.dll version 4.0):
public override unsafe int GetHashCode()
{
fixed (char* str = ((char*) ...
9
votes
8answers
1k views
GetHashCode Extension Method
After reading all the questions and answers on StackOverflow concerning overriding GetHashCode() I wrote the following extension method for easy and convenient overriding of GetHashCode():
public ...
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 ...
7
votes
2answers
266 views
Have I implemented Equals()/GetHashCode() correctly?
The program was working with this implementation:
class Instrument
{
public string ClassCode { get; set; }
public string Ticker { get; set; }
public override string ToString()
{
...
7
votes
5answers
564 views
How do I create a HashCode in .net (c#) for a string that is safe to store in a database?
To quote from Guidelines and rules for GetHashCode by Eric Lippert:
Rule: Consumers of GetHashCode cannot rely upon it being stable over time or across appdomains
Suppose you have a ...
7
votes
3answers
1k views
What's the role of GetHashCode in the IEqualityComparer<T> in .NET?
I'm trying to understand the role of the GetHashCode method of the interface IEqualityComparer.
The following example is taken from MSDN:
using System;
using System.Collections.Generic;
class ...
7
votes
5answers
642 views
Why is ValueType.GetHashCode() implemented like it is?
From ValueType.cs
**Action: Our algorithm for returning the hashcode is a little bit complex. We look
** for the first non-static field and get it's hashcode. If the type has no
** ...
6
votes
3answers
586 views
Overriding GetHashCode in VB without checked/unchecked keyword support?
So I'm trying to figure out how to correctly override GetHashCode() in VB for a large number of custom objects. A bit of searching leads me to this wonderful answer.
Except there's one problem: VB ...
6
votes
7answers
943 views
Why does C# not implement GetHashCode for Collections?
I am porting something from Java to C#. In Java the hashcode of a ArrayList depends on the items in it. In C# I always get the same hashcode from a List...
Why is this?
For some of my objects the ...
6
votes
6answers
624 views
C#: How would you unit test GetHashCode?
Testing the Equals method is pretty much straight forward (as far as I know). But how on earth do you test the GetHashCode method?
5
votes
4answers
180 views
Why use GetHashCode() over Equals()?
HashSet.Add() first compares the results of GetHashCode(). If those are equal, it calls Equals().
Now, my understanding is in order to implement GetHashCode(), something must be done with the fields ...
5
votes
1answer
362 views
Is the .Net HashSet uniqueness calculation completely based on Hash Codes?
I was wondering whether the .Net HashSet<T> is based completely on hash codes or whether it uses equality as well?
I have a particular class that I may potentially instantiate millions of ...
5
votes
2answers
132 views
Why should the “prime-based” hashcode implmentation be used instead of the “naive” one?
I have seen that a prime number implmentation of the GetHashCode function is being recommend, for example here. However using the following code (in VB, sorry), it seems as if that implementation ...
5
votes
3answers
634 views
What's the best strategy for Equals and GetHashCode?
I'm working with a domain model and was thinking about the various ways that we have to implement this two methods in .NET. What is your preferred strategy?
This is my current implementation:
...
5
votes
6answers
2k views
GetHashCode() problem using xor
My understanding is that you're typically supposed to use xor with GetHashCode() to produce an int to identify your data by its value (as opposed to by its reference). Here's a simple example:
class ...
5
votes
2answers
1k views
Equals method implementation helpers (C#)
Everytime I write some data class, I usually spend so much time writing the IEquatable implementation.
The last class I wrote was something like:
public class Polygon
{
public Point[] Vertices { ...
4
votes
4answers
308 views
GetHashCode() gives different results on different servers?
I declared a C# line of code like so
int hashcode = "apple".GetHashCode();
On my computer, a computer at work, and a friend's computer, the result was 1657858284. On a development server, the ...
4
votes
5answers
310 views
Storing C# GetHashCode() in DB is Unreliable [closed]
Possible Duplicate:
How do I create a HashCode in .net (c#) for a string that is safe to store in a database?
I'm planning to store hundreds of thousands of URLs in my database. Each row ...
4
votes
2answers
2k views
Seeding a pseudo-random number generator in C#
I need a seed for an instance of C#'s Random class, and I read that most people use the current time's ticks counter for this. But that is a 64-bit value and the seed needs to be a 32-bit value. Now I ...
4
votes
2answers
264 views
GetHashCode Equality
I've wondered about this, so I figure I'll ask it.
Most places you'll see use the same semantic logic for overriding Equals as GetHashCode for memberwise equality...however they usually use different ...
4
votes
5answers
438 views
GetHashCode() with string keys
Hey all, I've been reading up on the best way to implement the GetHashCode() override for objects in .NET, and most answers I run across involve somehow munging numbers together from members that are ...
3
votes
2answers
54 views
Should GetHashCode Depend on the Type?
Firstly, I'm using the GetHashCode algorithm described, here. Now, picture the following (contrived) example:
class Foo
{
public Foo(int intValue, double doubleValue)
{
this.IntValue ...
3
votes
3answers
145 views
Should .GetHashCode() return same value for two objects having different refences in the memory?
I need to override Equals() method for one of my types but it seems I have to also override GetHashCode() method.
I am not sure:
If I have type Animal and if I have 2 instances of Animal which are ...
3
votes
3answers
108 views
Overriding Equality Operators
I've implemented a class that overloads the == and != operators.
This seems to work fine; however, I get the warning 'type' defines operator == or operator != but does not override ...
3
votes
2answers
84 views
Unit Testing - What do you do when your code is pretty much just a calculation (GetHashCode for example)?
public class Foo
{
public int X { get; set; }
public int Y { get; set; }
public int Z { get; set; }
public override int GetHashCode()
{
var hash = 17;
hash *= 23 + ...
3
votes
3answers
238 views
Generic IEqualityComparer<T> and GetHashCode
Being somewhat lazy about implementing lots of IEqualityComparers, and given that I couldn't easily edit class implementations of object being compared, I went with the following, meant to be used ...
3
votes
4answers
1k views
Using GetHashCode for getting Enum int value
I have an enum
public enum INFLOW_SEARCH_ON
{
ON_ENTITY_HANDLE = 0,
ON_LABEL = 1,
ON_NODE_HANDLE = 2
} // enum INFLOW_SEARCH_ON
I have to use this enum ...
3
votes
6answers
668 views
Overriding GetHashCode
As you know, GetHashCode returns a semi-unique value that can be used to identify an object instance in a collection. As a good practice, it is recommended to override this method and implement your ...
3
votes
1answer
122 views
Why can't I override GetHashCode on a many-to-many entity in EF4?
I have a many-to-many relationship in my Entity Framework 4 model (which works with a MS SQL Server Express): Patient-PatientDevice-Device. I'm using Poco, so my PatientDevice-class looks like this:
...
3
votes
2answers
375 views
Generating a good hash code (GetHashCode) for a BitArray
I need to generate a fast hash code in GetHashCode for a BitArray. I have a Dictionary where the keys are BitArrays, and all the BitArrays are of the same length.
Does anyone know of a fast way to ...
3
votes
3answers
687 views
C# how to calculate hashcode from an object reference
Folks, here's a thorny problem for you!
A part of the TickZoom system must collect instances of every type of object into a Dictionary<> type.
It is imperative that their equality and hash code ...
3
votes
1answer
747 views
GetHashCode for a Class with a List Object
I have such a class:
public class Cycle
{
public List<int> Edges
{
get;
private set;
}
public override bool Equals(object obj)
...
3
votes
5answers
3k views
Converting a Double to an Integer for GetHashCode in Delphi
Delphi 2009 added the GetHashCode function to TObject. GetHashCode returns an Integer which is used for hashing in TDictionary.
If you want an object to work well in TDictionary, you need to ...
3
votes
3answers
5k views
Creating the GetHashCode method in C#
What is the best way to create your own GetHashCode method for a class in C#? Suppose I have a simple class (which overrides the Equals method), as follows:
class Test
{
public string[] ...
3
votes
4answers
1k views
Object.GetHashCode
My question may duplicate Default implementation for Object.GetHashCode() but I'm asking again because I didn't understand the accepted answer to that one.
To begin with I have three questions about ...
3
votes
2answers
662 views
How should I go about implementing Object.GetHashCode() for complex equality?
Basically, I have the following so far:
class Foo {
public override bool Equals(object obj)
{
Foo d = obj as Foo ;
if (d == null)
return false;
return ...
3
votes
4answers
553 views
C# How to select a Hashcode for a class that violates the Equals contract?
I've got multiple classes that, for certain reasons, do not follow the official Equals contract. In the overwritten GetHashCode() these classes simply return 0 so they can be used in a Hashmap.
Some ...
2
votes
2answers
65 views
Library with Equals and GetHashCode helper methods for .NET
Google Guava provides nice helpers to implement equals and hashCode like the following example demonstrates:
public int hashCode() {
return Objects.hashCode(lastName, firstName, gender);
}
Is ...
2
votes
1answer
66 views
NHibernate, non composite ID and GetHashCode
When my domain model have a composite key in the database I will get an exception when forgetting to override Equals/GetHashCode
NHibernate.MappingException: composite-id class must override ...
2
votes
5answers
164 views
Converting Object.GetHashCode() to Guid
I need to assign a guid to objects for managing state at app startup & shutdown
It looks like i can store the lookup values in a dictionary using
...