Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
1k views

Custom Class used as key in Dictionary but key not found

I have a class, show below, which is used as a key in a Dictionary<ValuesAandB, string> I'm having issues when trying to find any key within this dictionary, it never finds it at all. As you can ...
2
votes
5answers
525 views

What can cause HashMap containsKey() to fail with String as the key?

I'm thoroughly confused by this one. I'm running a full package worth of unit tests. Here's the relevant shared code which gets used by a number of JUnit tests: private static Map<String, ...
2
votes
6answers
424 views

Java hashmaps without the value?

Let's say I want to put words in a data structure and I want to have constant time lookups to see if the word is in this data structure. All I want to do is to see if the word exists. Would I use a ...
1
vote
2answers
580 views

C# Dictionary ContainsKey

My problem is ContainsKey is always returning false even when they key has been added and .Equals evaluates to true. I have the following class: public class StatisticsFilter { private String ...
1
vote
3answers
246 views

Why containsKey did not find the key?

I have the following code: payoffs2exchanges.put(point, exchange); if (!payoffs2exchanges.containsKey(point) ) { game.log.fine("yes"); } else { game.log.fine("no"); } It outputs "no". In ...
1
vote
3answers
488 views

Dictionary is returning false on ContainsKey after item is added

I have a dictionary declared as follows IDictionary<string, object> _objectIds = new Dictionary<string, object>(); I was experiencing some problems with it and it discovered that the ...
0
votes
1answer
77 views

update values in a dictionary with new fields obtained from a wmi query vb.net

EDIT I still can't assign the process the username of the session id that is associated with it. This is the code i use to retrieve user details: Public Sub GetUsers() Using server As ...
0
votes
4answers
83 views

Dictionary ContainsKey does not seem to work with string[] key

I am trying to have a data structure with multiple string keys. To do this, I tried to create a Dictionary with string[] element. But the ContainsKey do no seem to work as I expect: ...
0
votes
1answer
35 views

WCF Service reset case sensitive property of Dictionary

i have a Dictionary. it is most important that this dictionary will use its Containskey() method as not case sensitive that is why i use the constructor to make it case insensitive: ...
0
votes
5answers
1k views

Java HashMap.containsKey() doesn't call equals()

I have a hashmap: Map<LotWaferBean, File> hm = new HashMap<LotWaferBean, File>(); LotWaferBean lw = new LotWaferBean(); ... //populate lw if (!hm.containsKey((LotWaferBean) lw)) { ...
0
votes
1answer
509 views

Java TreeMap containsKey invariably returning true?

I'm writing a Java program that's using the TreeMap interface, and I'm having a problem with containsKey. It is returning true even when I give containsKey something that I know for certain is not in ...