使用List类型的对象创建一个类

时间:2015-02-27 19:31:15

标签: java list hashmap

我是JAVA的新手,如何使用List类型的对象创建一个类。

public class Information {

    public String Name;
    public double Age;
    **public List<String> vechicleType=** new ArrayList<String>();**

    }

我收到如下错误:

The type List is not generic; it cannot be parameterized with arguments <String>

是否可以在hashmap中使用它,例如Eg:

我想使用HashMap

HashMap<String, Information> hm = new HashMap<String,Information>();

谢谢!

1 个答案:

答案 0 :(得分:3)

你班上的导入必须是错误的。

请勿导入java.awt.Listjava.util.List