Java UUID getMostSignificantBits() 方法



描述

Java UUID getMostSignificantBits() 方法用于返回此 UUID 的 128 位值的最高有效 64 位。

声明

以下是 java.util.UUID.getMostSignificantBits() 方法的声明。

public long getMostSignificantBits()

参数

返回值

方法调用返回此 UUID 的 128 位值的最高有效 64 位。

异常

使用标准格式字符串示例生成 UUID 的最高有效 64 位

以下示例演示了 Java UUID getMostSignificantBits() 方法的使用,用于获取此 UUID 的 128 位值的最高有效 64 位。我们使用给定的字符串创建了一个 UUID 对象。然后,我们使用 getMostSignificantBits() 方法打印与 UUID 对象关联的最高有效 64 位。

package com.tutorialspoint;

import java.util.UUID;

public class UUIDDemo {
   public static void main(String[] args) {

      // creating UUID      
      UUID x = UUID.fromString("38400000-8cf0-11bd-b23e-10b96e4ef00d");

      // getting most significant 64 bits
      System.out.println("most significant 64 bits: "+x.getMostSignificantBits());    
   }    
}

输出

让我们编译并运行上述程序,这将产生以下结果。

most significant 64 bits: 4053239666997989821

使用随机生成的 UUID 示例获取最高有效 64 位

以下示例演示了 Java UUID getMostSignificantBits() 方法的使用,用于获取此 UUID 的 128 位值的最高有效 64 位。我们使用 randomUUID() 方法创建了一个 UUID 对象。然后,我们使用 getMostSignificantBits() 方法打印与 UUID 对象关联的最高有效 64 位。

package com.tutorialspoint;

import java.util.UUID;

public class UUIDDemo {
   public static void main(String[] args) {

      // creating UUID      
      UUID x = UUID.randomUUID();

      // getting most significant 64 bits
      System.out.println("most significant 64 bits: "+x.getMostSignificantBits());
   }    
}

输出

让我们编译并运行上述程序,这将产生以下结果。

most significant 64 bits: 9185635904161073452

使用字节示例生成 UUID 的最高有效 64 位

以下示例演示了 Java UUID getMostSignificantBits() 方法的使用,用于获取此 UUID 的 128 位值的最高有效 64 位。我们使用 nameUUIDFromBytes() 方法创建了一个 UUID 对象。然后,我们使用 getMostSignificantBits() 方法打印与 UUID 对象关联的最高有效 64 位。

package com.tutorialspoint;

import java.util.UUID;

public class UUIDDemo {
   public static void main(String[] args) {

      // creating byte array 
      byte[] nbyte = {10,20,30};

      // creating UUID from byte     
      UUID uid = UUID.nameUUIDFromBytes(nbyte);

      // getting most significant 64 bits
      System.out.println("most significant 64 bits: "+uid.getMostSignificantBits());
   }    
}

输出

让我们编译并运行上述程序,这将产生以下结果。

most significant 64 bits: 9172064757165603049
java_util_uuid.htm
广告