欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

全局唯一自增id生成  

程序员文章站 2022-07-14 12:28:14
...
public class Bbbb {
	public static void main(String[] args) {
		//42位时间戳+6位机器码+16位hash预留
		long time = System.currentTimeMillis();
		long serverid = 30; // serverid 不能超过64
		long userid = 123213123123l;
		long last16 = getLast(userid, 16);
		System.out.println(last16);
		
		long id = (time << 22) + (serverid << 16) + last16;
		System.out.println(id);
		
		long id_last16 = getLast(id, 16);
		System.out.println(id_last16);
	}
	
	public static long getLast(long l, int last){
		long i =  (l >> last) << last;
		return l-i;
	}
}

 

上一篇: 动态生成Log

下一篇: JVM 自带线程