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


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


Java中的YearMonth类的hashCode()方法用于为此使用的YearMonth实例创建合适的哈希码。

用法

public int hashCode()

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


返回值:它为此YearMonth实例返回合适的整数哈希码值。

以下程序说明了Java中YearMonth的hashCode()方法:
示例1:

// Program to illustrate the hashCode() method 
  
import java.util.*; 
import java.time.*; 
import java.time.format.DateTimeFormatter; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Create a YearMonth object 
        YearMonth thisYearMonth = YearMonth.of(2017, 8); 
  
        // Get the hash code value 
        System.out.println(thisYearMonth.hashCode()); 
    } 
}
输出:
1073743841

示例2:

// Program to illustrate the hashCode() method 
  
import java.util.*; 
import java.time.*; 
import java.time.format.DateTimeFormatter; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
  
        // Create a YearMonth object 
        YearMonth thisYearMonth = YearMonth.of(2018, 5); 
  
        // Get the hash code value 
        System.out.println(thisYearMonth.hashCode()); 
    } 
}
输出:
671090658

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



相关用法


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