博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
用户ID的代码生成
阅读量:6533 次
发布时间:2019-06-24

本文共 825 字,大约阅读时间需要 2 分钟。

public class Uid {    private static final String machineIdString = Integer.toHexString(new Object().hashCode());    private static final AtomicInteger globalCount = new AtomicInteger(0);    private final int count = globalCount.incrementAndGet();    private final long time = System.currentTimeMillis();    /**     * Generates a new identifier.     */    private Uid() {        super();    }    /**     * Generates a new identifier String.     */    public static String generateUidString() {        String idString = new Uid().toString();        return idString;    }    /**     * @see Object#toString()     */    public String toString() {        String timeString = Long.toHexString(time);        String countString = Integer.toHexString(count);        return machineIdString + "_" + timeString + "_" + countString;    }}

 

转载地址:http://nwzdo.baihongyu.com/

你可能感兴趣的文章
Java反射机制详解(3) -java的反射和代理实现IOC模式 模拟spring
查看>>
(2编写网络)自己动手,编写神经网络程序,解决Mnist问题,并网络化部署
查看>>
【转】如何使用分区助手完美迁移系统到SSD固态硬盘?
查看>>
NIO框架入门(四):Android与MINA2、Netty4的跨平台UDP双向通信实战
查看>>
就是要你懂TCP -- 握手和挥手
查看>>
Andrew Ng机器学习公开课笔记 -- Regularization and Model Selection
查看>>
《Python游戏编程快速上手》一1.3 如何使用本书
查看>>
《Visual Studio程序员箴言》----1.2 滚动与导航
查看>>
Processing编程学习指南2.7 Processing参考文档
查看>>
架构师速成-架构目标之伸缩性\安全性
查看>>
执行可运行jar包时读取jar包中的文件
查看>>
linux下ExtMail邮件使用及管理平台
查看>>
linux中iptables设置自建dns服务器的端口
查看>>
基于Yum安装zabbix3.0
查看>>
Master-work模式
查看>>
RT-Thread--时间管理
查看>>
BUPT 63T 高才生 找最佳基站
查看>>
linux 学习(二)防火墙
查看>>
scala001
查看>>
android - SpannableString或SpannableStringBuilder以及string.xml文件中的整型和string型代替...
查看>>