Java null String

來源:互聯網
上載者:User

標籤:

In Java, the String will have different usage.

 

Example:

public class Test {   public static void main(String[] args) {String s1 = "accp";String s2 = "accp";String s3 = new String(s1);if(s1 == s2) {System.out.print("true, ");} else {System.out.print("false,");}      if(s1 == s3) {System.out.println("true");} else {System.out.println("false");}   }} /* Output:true, false*/

對於語句String s1 = "accp";
Java內部將此語句轉化為以下幾個步驟:

  1. 先定義一個名為s1的對String類的對象引用變數: String s1;
  2. 在棧中尋找有沒有存放值為"accp"的地址。
    如果沒有,則開闢一個存放字面值為"accp"的地址,接著建立一個新的String類的對象o,並將o 的字串值指向這個地址,而且在棧中這個地址旁邊記下這個引用的對象o。
    如果已經有了值為"accp"的地址,則尋找對象o,並返回o的地址。
    所以當棧中存在你想建立的變數的值的時候,其實是引用已經存在棧中的地址,不是建立的。
  3. 將s1指向對象o的地址。

String s1 = "accp";其字串值是儲存了一個指向存在棧中資料的引用!所以s1和s2的引用地址是相同的,所s1==s2為true。

String s3 = new String(s1);是建立一個對象,也就是建立了新的引用,所以s3的引用地址是新建立的,當然和s1的引用地址不同。所以s1 == s3為false。

 

==是比較對象的引用地址,如果要比較對象的值的話用equal吧!

 

Java null String

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.