各種Java基本數據類型轉換

一 自動類型轉換
1 自動類型轉換圖


 
數範圍小的向數範圍大的進行自動類型轉換,如同把小瓶的水倒入大瓶,不會有任何問題。Java支持自動類型轉換。
2 代碼示例dom

Java代碼 下載  spa

  1. public class AutoConversion  
  2. {  
  3.     public static void main(String[] args)  
  4.     {  
  5.         int a  = 6;  
  6.         // int能夠自動轉換爲float類型  
  7.         float f = a;  
  8.         // 下面將輸出6.0  
  9.         System.out.println(f);  
  10.         // 定義一個byte類型的整數變量  
  11.         byte b = 9;  
  12.         // 下面代碼將出錯,byte型不能自動類型轉換爲char型  
  13.         // char c = b;  
  14.         // 下面是byte型變量能夠自動類型轉換爲double型  
  15.         double d = b;  
  16.         // 下面將輸出9.0  
  17.         System.out.println(d);  
  18.     }  
  19. }  

 
3 運行結果htm

6.0
9.0
4基本類型的值和字符串鏈接代碼示例blog

Java代碼 下載  字符串

  1. public class PrimitiveAndString  
  2. {  
  3.     public static void main(String[] args)  
  4.     {  
  5.         // 下面代碼是錯的,由於5是一個整數,不能直接賦給一個字符串  
  6.         // String str1 = 5;  
  7.         // 一個基本類型值和字符串進行鏈接運算時,基本類型值自動轉換爲字符串  
  8.         String str2 = 3.5f + "";  
  9.         // 下面輸出3.5  
  10.         System.out.println(str2);  
  11.         // 下面語句輸出7Hello!  
  12.         System.out.println(3 + 4 + "Hello!");  
  13.         // 下面語句輸出Hello!34,由於Hello! + 3會把3當成字符串處理,  
  14.         // 然後再把4當成字符串處理  
  15.         System.out.println("Hello!" + 3 + 4);  
  16.     }  
  17. }  


5 運行結果get

3.5
7Hello!
Hello!34字符串處理

 

二強制類型轉換
1概念介紹
但願把上圖的右邊類型轉化爲左邊類型,則必須進行強制的類型轉換,強制類型轉換格式是(targettype)value,相似把大瓶的水倒入小瓶,若是大瓶的水不少,將會引發溢出,從而形成數據丟失。這種轉換也稱爲縮小轉換。
2 代碼示例it

Java代碼 下載  io

 

  1. public class NarrowConversion  
  2. {  
  3.     public static void main(String[] args)  
  4.     {  
  5.         int iValue = 233;  
  6.         // 強制把一個int類型的值轉換爲byte類型的值  
  7.         byte bValue = (byte)iValue;  
  8.         // 將輸出-23  
  9.         System.out.println(bValue);  
  10.         double dValue = 3.98;  
  11.         // 強制把一個double類型的值轉換爲int  
  12.         int tol = (int)dValue;  
  13.         // 將輸出3  
  14.         System.out.println(tol);  
  15.     }  
  16. }  

3 運行結果class

-23
3
4 模擬隨機字符串示例

Java代碼 下載  

  1. public class RandomStr  
  2. {  
  3.     public static void main(String[] args)  
  4.     {  
  5.         // 定義一個空字符串  
  6.         String result = "";  
  7.         // 進行6次循環  
  8.         for(int i = 0 ; i < 6 ; i ++)  
  9.         {  
  10.             // 生成一個97~122的int型的整數  
  11.             int intVal = (int)(Math.random() * 26 + 97);  
  12.             // 將intValue強制轉換爲char後鏈接到result後面  
  13.             result = result + (char)intVal;  
  14.         }  
  15.         // 輸出隨機字符串  
  16.         System.out.println(result);  
  17.     }  
  18. }  

 
5運行結果

rxyelm

 

三 表達式自動提高
1 自動提高概念
當一個算術表達式包含多個基本類型的值時,整個算術表達式的數據類型將會自動提高,提高規則以下
全部byte類型,short類型和char類型將被提高到int類型
整個算術表達式類型自動提高到與表達式中最高等級操做數一樣類型
2 代碼示例

Java代碼 下載  

  1. public class AutoPromote  
  2. {  
  3.     public static void main(String[] args)  
  4.     {  
  5.         // 定義一個short類型變量  
  6.         short sValue = 5;  
  7.         // 下面代碼將出錯:表達式中的sValue將自動提高到int類型,  
  8.         // 則右邊的表達式類型爲int,將一個int類型賦給short類型的變量將發生錯誤。  
  9.         // sValue = sValue - 2;  
  10.         byte b = 40;  
  11.         char c = 'a';  
  12.         int i = 23;  
  13.         double d = .314;  
  14.         // 右邊表達式中在最高等級操做數爲d(double型)  
  15.         // 則右邊表達式的類型爲double型,故賦給一個double型變量  
  16.         double result = b + c + i * d;  
  17.         // 將輸出144.222  
  18.         System.out.println(result);  
  19.         int val = 3;  
  20.         // 右邊表達式中2個操做數都是int,故右邊表達式的類型爲int  
  21.         // 所以,雖然23/3不能除盡,依然獲得一個int整數  
  22.         int intResult = 23 / val;  
  23.         System.out.println(intResult); // 將輸出7  
  24.         // 輸出字符串Hello!a7  
  25.         System.out.println("Hello!" + 'a' + 7);  
  26.         // 輸出字符串104Hello!  
  27.         System.out.println('a' + 7 + "Hello!");  
  28.     }  
  29. }  

 
3 運行結果

144.222
7
Hello!a7
104Hello!

相關文章
相關標籤/搜索