摘要: Integer i = 0; String s = "0"; 上述两个代码都会保存在运行时常量池中 而 final Integer i = 200; 只会保存在堆内存或栈内存中, final只代表这是个常量, 不允许修改, 而不代表其存储区域 阅读全文
posted @ 2017-10-14 17:48 車輪の唄 阅读(7) 评论(0) 推荐(0) 编辑
摘要: public class TestCl{ static final Integer ii = 1000; private final Integer b = 1000; public static void main(String[] args) { TestCl cl = new TestCl() 阅读全文
posted @ 2017-10-14 16:41 車輪の唄 阅读(8) 评论(0) 推荐(0) 编辑