黑马程序员技术交流社区
标题:
这个可以理解成byte的自动装箱??
[打印本页]
作者:
dubei1993
时间:
2016-6-6 12:50
标题:
这个可以理解成byte的自动装箱??
byte[] bys = line.getBytes();
// 创建TreeMap集合
TreeMap<Byte, Integer> tm = new TreeMap<Byte, Integer>();
// 遍历字节数组,将其作为键判断值,若值为null则添加;若不为null则值++;
for (int i = 0; i < bys.length; i++) {
if (bys
>= 'a' && bys
< 'z') {
byte key = bys
;
Integer value = tm.get(key);
if (value == null) {
tm.put(key, 1);
} else {
tm.put(key, ++value);
}
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2