当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java UUID getMostSignificantBits()用法及代码示例


UUID是128位值。 Java中UUID类的getMostSignificantBits()方法用于获取此UUID的最高有效64位。

用法:

public long getMostSignificantBits()

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


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

以下示例程序旨在说明getMostSignificantBits()方法的用法:

示例1:

// Java code to illustrate 
// getMostSignificantBits() 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 most significant 64 bit 
        System.out.println("The most significant 64 bit: "
                           + UUID_1 
                                 .getMostSignificantBits()); 
    } 
}
输出:
UUID: 58e0a7d7-eebc-11d8-9669-0800200c9a66
The value is: 5737
The most significant 64 bit: 6404303215985955288

示例2:

// Java code to illustrate 
// getMostSignificantBits() 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 most significant 64 bit 
        System.out.println("The most significant 64 bit: "
                           + UUID_1.getMostSignificantBits()); 
    } 
}
输出:
UUID: 58e0a7d7-eebc-11d8-9669-0800200c9a66
The value is: 5737
The most significant 64 bit: 6404303215985955288


相关用法


注:本文由纯净天空筛选整理自Chinmoy Lenka大神的英文原创作品 UUID getMostSignificantBits() Method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。