📜  Java中的 Duration hashCode() 方法及示例

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

Java中的 Duration hashCode() 方法及示例

Java.time包中的Duration类hashCode()方法用来获取这个时长的hashCode值。

句法:

public int hashCode()

参数:此方法不接受任何参数。

返回值:此方法返回一个int 值,该值是此持续时间的 hashCode 值。

下面的示例说明了 Duration.hashCode() 方法:

示例 1:

// Java code to illustrate hashCode() method
  
import java.time.Duration;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Duration using parse() method
        Duration duration = Duration.parse("P2DT3H4M");
  
        // Get the hashCode value
        // using hashCode() method
        System.out.println(duration.hashCode());
    }
}
输出:
183840

示例 2:

// Java code to illustrate hashCode() method
  
import java.time.Duration;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Duration using ofHours() method
        Duration duration = Duration.ofHours(5);
  
        // Get the hashCode value
        // using hashCode() method
        System.out.println(duration.hashCode());
    }
}
输出:
18000

参考: https://docs.oracle.com/javase/9/docs/api/ Java/time/Duration.html#hashCode–