【Java】基礎資料型別 (Elementary Data Type)與封裝類、字串的相互轉換__Java基礎資料型別 (Elementary Data Type)及其封裝類字串的轉

來源:互聯網
上載者:User
一、基礎資料型別 (Elementary Data Type)與其對應的封裝類之間的相互轉換 基礎資料型別 (Elementary Data Type)轉換為封裝類

1·直接賦值  (自動打包)

Integer i=3;  

2·使用封裝類的含參建構函式(執行個體化)

Integer i=new Integer(3);  

3·使用封裝類提供的valueOf()方法(靜態方法)

Integer i=Integer.valueOf(3);  


封裝類轉換為基礎資料型別 (Elementary Data Type)

1·直接賦值(自動解包)

Integer i=new Integer(2);  

int j=i;  

2·使用封裝類提供的value()方法

Integer i=new Integer(3);  

int j=i.intValue();  

float f=i.floatValue();  

  二、基礎資料型別 (Elementary Data Type)與字串之間的相互轉換        基礎資料型別 (Elementary Data Type)轉換為字串

1·使用String類的valueOf()方法(靜態方法)

String s=String.valueOf(123);  

2·使用封裝類的toString()方法(靜態方法)

String s=Integer.toString(3);  

3·使用字串串連符“+”

String s=""+123;  


字串轉換為基礎資料型別 (Elementary Data Type)

1·使用封裝類的靜態方法

int i=Integer.parseInt("12");  

  三、封裝類與字串之間的相互轉換 字串轉換為封裝類          

1·使用封裝類的含參建構函式(執行個體化)

Integer i=new Integer("123");  

2·使用封裝類的valueOf()方法

Integer i=Integer.valueOf("123");  


封裝類轉換為字串

1·使用字串串連符“+”

Integer i=new Integer(123);  

String s=""+i;  

2·使用封裝類的toString()方法

Integer i=new Integer(123);  

String s=i.toString();  

聯繫我們

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