Java offsetTime hashCode()方法及示例
Java中OffsetTime类的 hashCode() 方法是用来获取这个时间实例的哈希代码。
语法:
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-