如何在Java中创建一些变量类型别名
假设我有这个代码
Map<String, String> list = new HashMap<String, String>();
list.put("number1", "one");
list.put("number2", "two");
我怎样才能使一些“别名”类型
Map<String, String>
到更容易重写的东西,比如
// may be something like this
theNewType = HashMap<String, String>;
theNewType list = new theNewType();
list.put("number1", "one");
list.put("number2", "two");
基本上我的问题是,如何将“别名”创建为某种“类型”,这样我就可以使它更容易编写,并且在需要更改整个程序代码时更容易。
谢谢,如果这是愚蠢的问题,很抱歉。我在Java中有点新。