Dictionary

I want to know how i can use The Dictionary in The programs pleas get me an Example
[90 byte] By [StrangePassenger] at [2007-11-26 12:16:41]
# 1
> I want to know how i can use The Dictionary in The> programs pleas get me an ExampleWhat Dictionary?What programs?
prometheuzz at 2007-7-7 14:53:07 > top of Java-index,Archived Forums,Socket Programming...
# 2
Which dictionary in what programs?Edit: Oh come on, Bart.
PhHein at 2007-7-7 14:53:07 > top of Java-index,Archived Forums,Socket Programming...
# 3
thePrograms.use(theDictionary);
quitte at 2007-7-7 14:53:07 > top of Java-index,Archived Forums,Socket Programming...
# 4
> I want to know how i can use The Dictionary in The> programs pleas get me an ExampleDictionary theDictionary = new Dictionary();theProgram.doMagic(theDictionary);
CeciNEstPasUnProgrammeur at 2007-7-7 14:53:07 > top of Java-index,Archived Forums,Socket Programming...
# 5
Waiting for Jos...
CeciNEstPasUnProgrammeur at 2007-7-7 14:53:07 > top of Java-index,Archived Forums,Socket Programming...
# 6
> Which dictionary in what programs?> > Edit: Oh come on, Bart.Well, let me for once Phil!; )
prometheuzz at 2007-7-7 14:53:07 > top of Java-index,Archived Forums,Socket Programming...
# 7
> Waiting for Jos...Duh, I saw this thread first but decided to pass the honours to Prometheuzzfor once ;-)kind regards,Jos (< speedy --> *vooom!*>
JosAH at 2007-7-7 14:53:07 > top of Java-index,Archived Forums,Socket Programming...
# 8

Do you mean with dictionary something to map keys to values? Java uses Maps for this:

import java.util.*;

...

Map<Foo, Bar> myMap = new HashMap<Foo, Bar>();

Foo key = ...;

Bar value = ...;

myMap.put(key, value);

value = myMap.get(key);

Tutorial:

http://java.sun.com/docs/books/tutorial/collections/index.html

http://java.sun.com/docs/books/tutorial/collections/interfaces/map.html

-Puce

Puce at 2007-7-7 14:53:07 > top of Java-index,Archived Forums,Socket Programming...