views:

771

answers:

3

Specifically, with a SortedMap<Vector<String>, int> I get "dimensions expected after this (int) token." Help!

+9  A: 

No, this is not possible. Use Integer instead. Autoboxing takes care of the rest (i.e. for most purposes you can program as if you had actually used int because Java converts to and from Integer automatically for you).

Konrad Rudolph
he was just after the badge
willcodejavaforfood
@willcode…: You figured me out. :-/ If not for the badge, I would have given a wrong, thoroughly misleading answer that would have led the OP on a merry goose chase through the internet. Now, quick, get off the Internet. It's dangerous out here.
Konrad Rudolph
If not for the badge you would not have posted the question at all I suspect :)
willcodejavaforfood
@willcode…: I have *not* posted the question. I've just corrected the formatting.
Konrad Rudolph
A: 

If you knew that why did you ask the question? :)

willcodejavaforfood
He didn't ask the question, he just made some edits to it for readability ;)
Jason Coco
@Jason - OK that makes more sense :)
willcodejavaforfood
A: 

Konrad is correct. Alternately, you can use the trove class TObjectIntHashMap to map Objects to primitive ints.

Craig P. Motlin