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“);的区别

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-02
  • 2021-09-13
  • 2018-08-09
  • 2021-12-12
猜你喜欢
  • 2021-07-22
  • 2021-12-20
  • 2022-12-23
  • 2021-08-10
  • 2021-08-24
  • 2021-10-17
  • 2022-12-23
相关资源
相似解决方案