📜  Java中的 UUID getLeastSignificantBits() 方法及示例

📅  最后修改于: 2022-05-13 01:55:37.646000             🧑  作者: Mango

Java中的 UUID getLeastSignificantBits() 方法及示例

UUID 是 128 位值。 Java中UUID类getLeastSignificantBits()方法用于获取该UUID的最低64位。

句法:

public long getLeastSignificantBits()

参数:该方法不带任何参数。

返回值:该方法返回一个整数值,它是这 128 个值的 UUID 的最低有效 64 位。

下面的程序说明了 getLeastSignificantBits() 方法的工作:

方案一:

// Java code to illustrate
// getLeastSignificantBits() method
  
import java.util.*;
  
public class UUID_Demo {
    public static void main(String[] args)
    {
        // Creating two UUIDs
        UUID UUID_1
            = UUID
                  .fromString(
                      "58e0a7d7-eebc-11d8-9669-0800200c9a66");
  
        // Displaying the UUID
        System.out.println("UUID: "
                           + UUID_1);
  
        // Displaying the value of UUID
        System.out.println("The value is: "
                           + UUID_1.clockSequence());
  
        // Getting the least significant 64 bit
        System.out.println("The least significant 64 bit: "
                           + UUID_1
                                 .getLeastSignificantBits());
    }
}
输出:
UUID: 58e0a7d7-eebc-11d8-9669-0800200c9a66
The value is: 5737
The least significant 64 bit: -7608541298835023258

方案二:

// Java code to illustrate
// getLeastSignificantBits() method
  
import java.util.*;
  
public class UUID_Demo {
    public static void main(String[] args)
    {
  
        // Creating two UUIDs
        UUID UUID_1
            = UUID
                  .fromString(
                      "58e0a7d7-eebc-11d8-9669-0800200c9a66");
  
        // Displaying the UUID
        System.out.println("UUID: "
                           + UUID_1);
  
        // Displaying the value of UUID
        System.out.println("The value is: "
                           + UUID_1.clockSequence());
  
        // Getting the least significant 64 bit
        System.out.println("The least significant 64 bit: "
                           + UUID_1.getLeastSignificantBits());
    }
}
输出:
UUID: 58e0a7d7-eebc-11d8-9669-0800200c9a66
The value is: 5737
The least significant 64 bit: -7608541298835023258