java byte和char
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java byte和char相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章