1.final Map 可以put元素,但是不可以重新赋值 如:
final Map map = new HashMap();
map = new HashMap();//不可以
因为栈中变量map引用地址不能修改
2.final str = “aa”;
str = "bb";//不可以
因为栈中变量str的值 不能修改
参考链接:
https://www.cnblogs.com/ibelieve618/p/6380328.html
https://blog.csdn.net/u013626215/article/details/51605644