public class SnowFlake extends Object
JS中Number类型有个最大值(安全值),为9007199254740992,是2^53。如果超过这个值,那么js会出现不精确的问题。 输入: Number.MAX_SAFE_INTEGER 输出: 9007199254740991(2^53-1)
所以主键最大长度只能是16位
static String
decode(Long id)
static SnowFlake
getInstance()
void
init(long machineId)
long
newId()
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
public static SnowFlake getInstance()
public static String decode(Long id)
id
public void init(long machineId)
machineId
public long newId()
Copyright © 2024. All rights reserved.