Java String字串對象的建立及管理

來源:互聯網
上載者:User

Constant Pool常量池的概念:

在講到String的一些特殊情況時,總會提到String Pool或者Constant Pool,但是我想很多人都不太明白Constant Pool到底是個怎麼樣的東西,啟動並執行時候儲存在哪裡,所以在這裡先說一下Constant Pool的內容。

String Pool是對應於在Constant Pool中儲存String常量的地區.習慣稱為String Pool,也有人稱為String Constant Pool.好像沒有正式的命名。

在java編譯好的class檔案中,有個地區稱為Constant Pool,他是一個由數組組成的表,類型為cp_info constant_pool[],用來儲存程式中使用的各種常量,包括Class/String/Integer等各種基本Java資料類型。

對於Constant Pool,表的基本通用結構為:

cp_info {
     u1 tag;
     u1 info[];
}

tag是一個數字,用來表示儲存的常量的類型,例如8表示String類型,5表示Long類型,info[]根據

類型碼tag的不同會發生相應變化。

對於String類型,表的結構為:

CONSTANT_String_info {
     u1 tag;
     u2 string_index;
}

tag固定為8,string_index是字串內容資訊,類型為:

CONSTANT_Utf8_info {
     u1 tag;
     u2 length;
     u1 bytes[length];
}

tag固定為1,length為字串的長度,bytes[length]為字串的內容。

(以下代碼在jdk6中編譯)

為了詳細理解Constant Pool的結構,我們參看一些代碼:

String s1 = "sss111";
   String s2 = "sss222";
   System.out.println(s1 + " " + s2);

由於"sss111"和"sss222"都是字串常量,在編譯期就已經建立好了儲存在class檔案中。

在編譯後的class檔案中會存在這2個常量的對應表示:

08 00 11 01 00 06 73 73 73 31 31 31 08 00 13 01 ; ......sss111....
00 06 73 73 73 32 32 32             ; ..sss222

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.