创建通用哈希表时出错

时间:2013-06-25 18:51:58

标签: java collections hashtable

我在尝试创建泛型HashTable时遇到以下错误。

The method put(String, capture#2-of ?) in the type Hashtable<String,capture#2-of ?> is not applicable for the arguments (String, int)

我需要一个HashTable,如下所示: HashTable<String, HashTable<String, AnyWrapperType>>

by AnyWrapperType i mean it could be Integer or String or Character or Boolean

我将?用于AnyWrapperType,但我收到了错误。

我也跟着link跟我知道我做错了什么但可以找到出路。

    Hashtable<String, Hashtable<String, String>> paramTocol = new Hashtable<>();

    if (standard != null && (!standard.isEmpty())) {
        Hashtable<String, String> temp = new Hashtable<>();
        temp.put(Appconstants.Col_studentinfo_S_Class,
                AvailableClass.getValueByName(standard));
        paramTocol.put("standard", temp);
    }
    if (section != null && (!section.isEmpty())) {
        Hashtable<String, String> temp = new Hashtable<>();
        temp.put(Appconstants.Col_studentinfo_S_Section, section);

        paramTocol.put("section", temp);
    }

此处数据库中standard is Integer的实际值和section is char对应的值。我被赋予所有这些值作为字符串,我需要将它们存储在HashTable中,所以我想要一些原始哈希表来保存所有这些值。这些类型都不是用户定义的

1 个答案:

答案 0 :(得分:1)

我认为您可以将AnyWrapperType设置为Object。由于java中的所有类都是Object的直接或间接子类,因此您可以将类型设置为Object,而不是设置泛型类型。 当你需要获得该元素时,你应该执行type-cast

HashTable<String, HashTable<String, Object>>