3
votes
10answers
173 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 …
6
votes
1answer
45 views
How does Object.GetHashCode work when the GC moves an object?
If I understand correctly, in .NET the default implementation of Object.GetHashCode() returns a value based on an object's memory address (at least for reference-types). However, t …
1
vote
4answers
336 views
Bad idea to use String key in HashMap?
I understand that the String class' hashCode() method is not guarantied to generate unique hash codes for distinct String-s. I see a lot of usage of putting String keys into HashM …
1
vote
3answers
86 views
Hash function that maps similar inputs to similar outputs?
Is there a hash function where small changes in the input result in small changes in the output? For example, something like:
hash("Foo") => 9e107d9d372bb6826bd81d3542a419d6
ha …
0
votes
4answers
121 views
Quick and Simple Hash Code Combinations
Can people recommend quick and simple ways to combine the hash codes of two objects. I am not too worried about collisions since I have a Hash Table which will handle that efficie …
2
votes
1answer
56 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 …
2
votes
6answers
125 views
Java: How to be sure to store unique arrays based on its values on a List
I have a number of one dimension arrays of Object[] (these objects are primitive types if it helps)
I want to store these arrays in a List, but only the arrays whose contents are …
9
votes
7answers
778 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 overridd …
2
votes
4answers
66 views
ConcurrentHashMap constructor parameters?
I am wondering about the parameters for constructing a ConcurrentHashMap:
initialCapacity is 16 by default (understood).
loadFactor is 0.75 by default.
concurrencyLevel is 16 by …
0
votes
2answers
88 views
.Net Hash Codes no longer persistent???
I have an API where various types have custom hash codes. These hash codes are based on getting the hash of a string representation of the object in question. Various salting te …
2
votes
4answers
97 views
GetHashCode issue
Hi,
Can anyone help explain the following. I am having an issue with a Dictionary where ContainsKey evaluates to false while both Equals and GetHashCode for the objects are succes …
1
vote
5answers
165 views
Java, Object.hashCode() result constant across all JVMs/Systems?
Is the output of Object.hashCode() required to be the same on all JVM implementations for the same Object?
For example if "test".hashCode() returns 1 on 1.4, could it potentially …
1
vote
1answer
99 views
Overriding equals and hashCode methods for a JavaBeans implemented in Scala
Hello,
I'm working on a project using iBatis and a Java caching tool ehcache but I'm implementing the model classes in Scala. I'm having a stong feeling that I'll have to override …
2
votes
3answers
202 views
Java - TreeSet and hashCode()
I have a quick question about TreeSets and hashCodes. I have a TreeSet and I'm adding objects to it, before I add an object, I check to see if it exists in the TreeSet using the co …
