整数キーとオブジェクト値を持つ ConcurrentHashMap が必要です(マップの一部の値は整数で、別の値は文字列です)。これは私のテーブルを初期化して使用する正しい方法ですか?
ConcurrentHashMap table=new ConcurrentHashMap<Integer, Comparable>();
table.put(new Integer(1), new String("nodata"));
table.put(new Integer(2), new Integer(23));