有没有一种更快的方法来实例化 Java 中的对象,而不必重新键入类?例如,看看这本实例化的著作:
HashMap<Integer, ArrayList<ActivityRecord>> days = new HashMap<Integer, ArrayList<ActivityRecord>>();
我喜欢这样的速记:
HashMap<Integer, ArrayList<ActivityRecord>> days = new();
或者,我也会对自动完成实例化以使用无参数构造函数的 Eclipse 快捷方式感到满意。