Java中Year类的hashCode()方法用于为当前Year对象获取合适的哈希码。
用法:
public int hashCode()
参数:此方法不接受任何参数。
返回值:对于使用它的year对象,它返回一个合适的整数哈希码。它从不返回NULL值。
以下程序说明了Java中Year的hashCode()方法:
示例1::
// Program to illustrate the hashCode() method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
// Creates a Year object
Year firstYear = Year.of(1997);
// Print the hash code for
// the current year object
System.out.println(firstYear.hashCode());
}
}
输出:
1997
示例2::
// Program to illustrate the hashCode() method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
// Creates a Year object
Year firstYear = Year.of(2018);
// Print the hash code for
// the current year object
System.out.println(firstYear.hashCode());
}
}
输出:
2018
参考: https://docs.oracle.com/javase/8/docs/api/java/time/Year.html#hashCode-
相关用法
- Java Map hashCode()用法及代码示例
- Java Set hashCode()用法及代码示例
- Java LocalDateTime hashCode()用法及代码示例
- Java Package hashCode()用法及代码示例
- Java Float hashCode()用法及代码示例
- Java OptionalInt hashCode()用法及代码示例
- Java Charset hashCode()用法及代码示例
- Java Boolean hashCode()用法及代码示例
- Java DateFormat hashCode()用法及代码示例
- Java ChronoPeriod hashCode()用法及代码示例
- Java Calendar hashCode()用法及代码示例
- Java SortedSet hashCode()用法及代码示例
- Java DecimalFormatSymbols hashCode()用法及代码示例
- Java OptionalLong hashCode()用法及代码示例
- Java Period hashCode()用法及代码示例
注:本文由纯净天空筛选整理自barykrg大神的英文原创作品 Year hashCode() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。