Java-Java String 常量池
常量池的定义是否是不同的类创建不同的常量池,
但是
public class World
{
public static void main(String[] args)
{
Conner a = new Conner();
String s1="abc";
String s2=a.s1;
System.out.println(s2 == s1);
}
}
public class Conner
{
String s1="abc";
public static String s()
{
return "abc";
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
/**
* Initializes a newly created {@code String} object so that it represents
* the same sequence of characters as the argument; in other words, the
* newly created string is a copy of the argument string. Unless an
* explicit copy of {@code original} is needed, use of this constructor is
* unnecessary since Strings are immutable.
*
* @param original
* A {@code String}
*/
public String(String original) {
this.value = original.value;
this.hash = original.hash;
}
这是string的源码,可以看出是先new一个对象后,拷贝值到数组中,不同的对象,所以地址也不一样