标签: java string
我理解interning和StringPool概念。但我无法理解String文字如何转换为String对象。 例如,
String abc = "abc";
上面的行将创建一个String对象。这个快捷方式如何工作(在java中)?