字符串文字池如何工作

字符串文字池如何工作,第1张

字符串文字池如何工作

如果我正确理解了您的问题,则您正在询问如何初始化字符串,而不将其放在字符串文字池中。只要不声明字符串文字表达式(不要在双引号中声明一系列字符),就可以避免这种情况。

// these two strings will be placed in the string literal poolString one = "one";  String two = new String("two");// this third string will NOT be placed in the string literal poolString three = new String(new char[] {'t', 'h', 'r', 'e', 'e'});


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4906166.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-12
下一篇 2022-11-12

发表评论

登录后才能评论

评论列表(0条)

保存