1 byte = 8 bit;
char 在Java中是2個位元組。 java採用unicode,2個位元組(16位元)來表示一個字元。 (建議學習:java課程)
一個數字或英文或漢字都是一個字符,只不過數字和英文時,儲存的2個位元組的第一個位元組都為0,就是浪費了點空間。
範例程式碼如下:
public class Test { public static void main(String[] args) { String str= "中"; char x ='中'; byte[] bytes=null; byte[] bytes1=null; try { bytes = str.getBytes("utf-8"); bytes1 = charToByte(x); } catch (UnsupportedEncodingException e) { // TODO Auto-generated catch block e.printStackTrace(); } System.out.println("bytes 大小:"+bytes.length); System.out.println("bytes1大小:"+bytes1.length); } public static byte[] charToByte(char c) { byte[] b = new byte[2]; b[0] = (byte) ((c & 0xFF00) >> 8); b[1] = (byte) (c & 0xFF); return b; } }
#執行結果:
bytes 大小:3 bytes1大小:2
以上是java中char是幾個位元組的詳細內容。更多資訊請關注PHP中文網其他相關文章!