| Page 13 of 38 Prev | Index | Next |
import java.util.Map;
import java.util.HashMap;
public class ExDicts {
public static void main(String[] args) {
Map m = new HashMap();
m.put("a", new Integer(1));
m.put("b", new Integer(2));
m.put("c", new Integer(3));
}
}
d = {"a":1, "b":2, "c":3}
| Page 13 of 38 Prev | Index | Next |