标签: java collections hashmap
在尝试正常声明HashMap时,代码写为
Map<K,V> m = new HashMap<>();
如果我尝试通过下面提到的代码创建哈希映射:
HashMap<K,V> m = new HashMap<>();
这两个声明之间有什么区别?哪一个应该是首选?