You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
- package helper
-
- import (
- "testing"
- )
-
- func Test_snowflake(t *testing.T) {
-
- // 创建一个Snowflake实例
- snowflake := NewSnowflake(169379266710)
- // 生成10个唯一ID并输出
- for i := 0; i < 10; i++ {
- id := snowflake.Generate()
- t.Log(id)
- }
- }
|