生成00000-99999的递增流水号码

import java.text.DecimalFormat;
import java.util.concurrent.atomic.AtomicInteger;
public class HelloWorld {
    public static void main(String []args) {
        DecimalFormat df = new DecimalFormat("00000");          //设置格式
        AtomicInteger z = new AtomicInteger();                  //number线程安全方式增加或减少的对象
        for(int i=0; i<10; i++){
            z.set(i);                   
            System.out.println(df.format(z.get()));            //df.format()转换number的格式
        }
        
    }
}

运行结果:

生成00000-99999的递增流水号码_第1张图片

你可能感兴趣的:(java学习)