Instant Class的hashCode()方法用于获取此Instant的hashCode。如果对象不变,则哈希码始终相同。 Hashcode是由JVM在对象创建时生成的唯一代码。它可用于对与哈希相关的算法(如哈希表,哈希图等)执行某些操作。还可以使用其唯一代码(哈希码)搜索对象。
用法:
public int hashCode()
返回值:此方法返回此Instant的hashCode。
以下示例程序旨在说明Instant.hashCode()方法:
示例1:
// Java program to demonstrate
// Instant.hashCode() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a Instant object
Instant instant
= Instant.parse("2018-12-30T19:34:50.63Z");
// get hashCode
// using hashCode()
int value = instant.hashCode();
// print result
System.out.println("hashCode value: "
+ value);
}
}
输出:
hashCode value: -683539878
示例2:
// Java program to demonstrate
// Instant.hashCode() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a Instant object
Instant instant = Instant.now();
// current Instant
System.out.println("Current Instant: "
+ instant);
// get hashCode
// using hashCode()
int value = instant.hashCode();
// print result
System.out.println("hashCode value: "
+ value);
}
}
输出:
Current Instant: 2018-11-27T04:45:52.428Z hashCode value: 1896457472
参考:https://docs.oracle.com/javase/10/docs/api/java/time/Instant.html#hashCode()
相关用法
- Java Instant get()用法及代码示例
- Java Instant now()用法及代码示例
- Java Instant with()用法及代码示例
- Java Instant from()用法及代码示例
- Java Instant until()用法及代码示例
- Java Instant plus()用法及代码示例
- Java Instant isAfter()用法及代码示例
- Java Instant minusNanos()用法及代码示例
- Java Instant query()用法及代码示例
- Java 8 Clock instant()用法及代码示例
- Java Instant getNano()用法及代码示例
- Java Instant getLong()用法及代码示例
- Java Instant ofEpochSecond()用法及代码示例
- Java Instant minusSeconds()用法及代码示例
- Java Instant isBefore()用法及代码示例
注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 Instant hashCode() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。