String s = “Hello“;和String s3 = new String(“Hello“);的区别

String s = new String(“hello”)和String s = “hello”;的区别?
1.前者创建两个对象,或者创建一个对象,

  • String s1 = new String(“hello”);在堆内存中创建了一个对象
    在方法区中的字符串常量池中创建了一个”hello”常量值, 地址0x001;
    指向new String();
  • new String()本身就是new出来的,所以也有一个地址值0x0001;
    赋值给String s1,指向了String s1
  • String s2 直接赋值,在常量池里找,有就直接赋值,把”hello”的地址0x001给了String s2
    String s2指向了常量池里的”hello”
    String s = “Hello“;和String s3 = new String(“Hello“);的区别