我是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>();
谢谢!