摘要: 1、byte与int转换 public static byte intToByte(int x) { return (byte) x; } public static int byteToInt(byte b) { //Java 总是把 byte 当做有符处理;我们可以通过将其和 0xFF 进行二进 阅读全文
posted @ 2016-09-30 09:43 ouhy 阅读(37515) 评论(2) 推荐(0)