我在网上看到关于内存泄漏的一个例子:
List<String> ans = new ArrayList<>(); for(int i=0; i<5; i++) { String str = new String("as"); ans.add(str); str = null; }
除了将ans = null,还有什么解决方法?
ans = null
内存泄露指的是已经用不到的东西没有被释放,一直占用内存这个例子里并没有这种情况,所以并没有内存泄露,所以并不需要解决…
548k questions
547k answers
4 comments
48.7k users