摘要: public static int binarySearch(int[] array,int value){ int min =0; int max =array.length-1; int mid =(min +max)>>>1; while(min value ){ max =mid -1; }else{ ... 阅读全文
posted @ 2017-08-18 16:12 tonggc1668 阅读(144) 评论(0) 推荐(0) 编辑
摘要: byte abyte =-1; System.out.println(abyte); System.out.println(Integer.toBinaryString(abyte)); //取高四位 byte high = (byte) ((abyte>>4) & 0x0f); System.ou 阅读全文
posted @ 2017-08-18 14:48 tonggc1668 阅读(901) 评论(0) 推荐(0) 编辑
摘要: int a=-1; Integer b=0; Integer c=0; System.out.println(Integer.toBinaryString(a)); b=a>>1; c=a>>>1; System.out.println(Integer.toBinaryString(b)); Sys 阅读全文
posted @ 2017-08-18 11:13 tonggc1668 阅读(120) 评论(0) 推荐(0) 编辑
摘要: public class DataHandleHelper { public static String encryptConsignee(Object consignee){ String con = ""; if(StringUtil.isNotBlank(String.valueOf(consignee))){ co... 阅读全文
posted @ 2017-08-18 09:44 tonggc1668 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 固定线程池默认抛弃策略,线程超过数量被抛弃不执行,但是队列默认数量是整形的最大数,一般是超不过队列数量加线程池数量 spring线程池 阅读全文
posted @ 2017-08-18 09:29 tonggc1668 阅读(208) 评论(0) 推荐(0) 编辑