一. byte : 占用一个字节
- byte 取值范围:-128~127 可以覆盖单个字节所有范围
https://www.runoob.com/note/45389
刚好是对应 ascii码
ascii码表:http://c.biancheng.net/c/ascii/
ASCII编码可以表示多少个字符:https://zhidao.baidu.com/question/2211190279687671348.html
byte a = 1;
byte b = "1"; // 报错
byte c = '2';
byte d = 130; // 报错
网友评论