摘要:
/*将二进制转换成十六进制*/class BinaryToHex { public static void main(String[] args) { int num = 120; char[] result = new char[1024]; int count = 0; while((... 阅读全文
posted @ 2015-11-13 16:51 勇敢的鑫 阅读(323) 评论(0) 推荐(0) 编辑
摘要:
/*将二进制转换成十六进制*/class BinaryToHex { public static void main(String[] args) { int num = 120; char[] result = new char[1024]; int count = 0; while((... 阅读全文
posted @ 2015-11-13 16:51 勇敢的鑫 阅读(323) 评论(0) 推荐(0) 编辑
摘要:
利用移位操作代替乘除操作可以提高代码的效率:/*利用移位运算代替乘除,可以提高代码效率*/class YiWeiTest { public static void main(String[] args) { int a = 2, b, c; b = 2 > 2; // 8/4 sop("... 阅读全文
posted @ 2015-11-13 15:11 勇敢的鑫 阅读(765) 评论(0) 推荐(0) 编辑 |
||