码迷,mamicode.com
首页 > 编程语言 > 详细

java byte和char

时间:2017-06-28 13:18:24      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:占用   str   stat   中文字符   int   []   ati   一个   false   

public static void main(String[] args) {
/*
* 1.‘中‘是字符,‘中国‘不是字符
* 2.‘中‘中文字符占两个字节,‘a‘英文字符占一个字节
* 3.char 占用两个字节
* 4.byte 占用一个字节
*/
byte a1 = ‘b‘;// true byte 占用一个字节 ‘b‘字符也占用一个字节
byte a2 = ‘中‘;//false ‘中‘占用两个字节
char a4 = ‘张‘;//true
int a3 = ‘中‘;//true int占用四个字节而‘中‘占两个字节
}

java byte和char

标签:占用   str   stat   中文字符   int   []   ati   一个   false   

原文地址:http://www.cnblogs.com/ZL0508/p/7089144.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!