byte 和 char
Posted mojiruo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了byte 和 char相关的知识,希望对你有一定的参考价值。
byte 和 char
- byte 是字节数据类型,有符号,范围在 -128-127 之间
- char 是字符数据类型,占两个字节,无符号,范围在 0-65525 之间
byte
byte 是可以和 ASCII 码,相互转换的
byte 不可以表示中文
char
char 不可以表示负数,但是可以表示中文
test
# 输入
char a1 = 37101;
char a2 = ‘郭‘;
byte b1 = 49;
byte b2 = (byte) ‘郭‘;
System.out.println(a1);
System.out.println(a2);
System.out.println(b1);
System.out.println(b2);
# 输出
郭
郭
49
-19
#37101 的字节编码 代表 郭 字
以上是关于byte 和 char的主要内容,如果未能解决你的问题,请参考以下文章
JAVA 各种数值类型最大值和最小值 Int, short, char, long, float,&nbs
ElasticSearch学习问题记录——Invalid shift value in prefixCoded bytes (is encoded value really an INT?)(代码片段