当前位置:   article > 正文

Java 中 String str= "hello world" 和 String str = new String ("hello world") 的区别_string str = "hello" 与 string str = newstring("hel

string str = "hello" 与 string str = newstring("hello")哪种性能好

String str= "hello world" 和 String str = new String ("hello world") 的区别:

  1. String str1 = "hello world";
  2. String str2 = new String ("hello world");
  3. String str3 = "hello world";
  4. System.out.println (str1 == str2); // false
  5. System.out.println (str2 == str3); // false
  6. System.out.println (str1 == str3); //true

str1,str2,str3 都在编译期间生成了字面常量和符号引用,运行期间字面常量 "hello world" 被存储在方法区中的常量池(只保存了一份)。str1 和 str3 储存的都是 "hello world" 在常量池中的地址,str2 中储存的是堆区中的对象的地址,而对象储存的是常量池中的地址。

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号