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


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


MonthDay类的hashCode()方法用于获取此MonthDay的hashCode。如果对象不变,则哈希码始终相同。 Hashcode是由JVM在对象创建时生成的唯一代码。它可用于对与哈希相关的算法(例如哈希表,哈希图等)执行某些操作。还可以使用其唯一代码(哈希码)搜索对象。

用法:

public int hashCode()

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


返回值:此方法返回合适的哈希码。

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

// Java program to demonstrate 
// MonthDay.hashCode() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        // create a MonthDay object 
        MonthDay month = MonthDay.parse("--10-12"); 
  
        // print hashcode 
        System.out.println("hashCode"
                           + " of YearMonth: "
                           + month.hashCode()); 
    } 
}
输出:
hashCode of YearMonth: 652

示例2:

// Java program to demonstrate 
// MonthDay.from() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        // create a MonthDay object 
        MonthDay month = MonthDay.parse("--08-31"); 
  
        // print hashcode 
        System.out.println("hashCode"
                           + " of YearMonth: "
                           + month.hashCode()); 
    } 
}
输出:
hashCode of YearMonth: 543

参考文献: https://docs.oracle.com/javase/10/docs/api/java/time/MonthDay.html#hashCode()



相关用法


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