最佳答案
字符串池是什么意思? 以下声明之间的区别是什么:
String s = "hello";
String s = new String("hello");
JVM 存储这两个字符串有什么区别吗?