分享个java线程安全,自增主键id的类AtomicLong

线程安全 自增的类
AtomicLong seq = new AtomicLong(0);
seq.incrementAndGet()

你可能感兴趣的:(分享个java线程安全,自增主键id的类AtomicLong)