如果我正确理解了您的问题,则您正在询问如何初始化字符串,而不将其放在字符串文字池中。只要不声明字符串文字表达式(不要在双引号中声明一系列字符),就可以避免这种情况。
// 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'});
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)