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


Java OffsetTime hashCode()用法及代码示例


Java中OffsetTime类的hashCode()方法用于获取此Time实例的哈希码。

用法:

public int hashCode()

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


返回值:它返回一个合适的哈希码。

以下示例程序旨在说明hashCode()方法:

示例1:

// Java program to demonstrate the hashCode() method 
  
import java.time.OffsetTime; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Parses the time 
        OffsetTime time = OffsetTime.parse("15:10:30+07:00"); 
  
        // gets the hash-code in time 
        System.out.println("hash-code: " + time.hashCode()); 
    } 
}
输出:
hash-code: -1984024609

程序2

// Java program to demonstrate the hashCode() method 
  
import java.time.OffsetTime; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Parses the time 
        OffsetTime time = OffsetTime.parse("11:30:30+06:00"); 
  
        // gets the hash-code in time 
        System.out.println("hash-code: " + time.hashCode()); 
    } 
}
输出:
hash-code: 745450958

参考: https://docs.oracle.com/javase/8/docs/api/java/time/OffsetTime.html#hashCode–



相关用法


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