java.time.zone.ZoneOffsetTransition类的hashCode()方法用于获取区域偏移量转换对象的哈希码。
用法:
public int hashCode()
参数:此方法不接受任何参数。
返回值:此方法返回区域偏移量转换对象的哈希码。
下面是说明hashCode()方法的示例:
范例1:
// Java program to demonstrate
// hashcode() method
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
import java.time.zone.*;
public class GFG {
public static void main(String[] argv)
{
// creating and initializing
// the object of LocalDateTime
LocalDateTime loc
= LocalDateTime.of(
1999, 04, 25,
03, 24, 45, 0);
// creating and initializing
// the object of ZoneOffset
ZoneOffset off1
= ZoneOffset.ofTotalSeconds(8);
// creating and initializing
// the object of ZoneOffset
ZoneOffset off2
= ZoneOffset.ofTotalSeconds(12);
// creating and initializing
// ZoneOffsetTransition Object
ZoneOffsetTransition zonetrans1
= ZoneOffsetTransition.of(
loc, off1, off2);
// getting the hash code for this object
// by using hashcode() method
int hash = zonetrans1.hashCode();
// display the result
System.out.println("hashcode:" + hash);
}
}
输出:
hashcode:1396559933
范例2:
// Java program to demonstrate
// hashcode() method
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
import java.time.zone.*;
public class GFG {
public static void main(String[] argv)
{
// creating and initializing
// the object of LocalDateTime
LocalDateTime loc
= LocalDateTime.of(
2010, 04, 25,
03, 56, 45, 0);
// creating and initializing
// the object of ZoneOffset
ZoneOffset off1
= ZoneOffset.ofTotalSeconds(8);
// creating and initializing
// the object of ZoneOffset
ZoneOffset off2
= ZoneOffset.ofTotalSeconds(12);
// creating and initializing
// ZoneOffsetTransition Object
ZoneOffsetTransition zonetrans1
= ZoneOffsetTransition.of(
loc, off1, off2);
// getting the hash code for this object
// by using hashcode() method
int hash = zonetrans1.hashCode();
// display the result
System.out.println("hashcode:" + hash);
}
}
输出:
hashcode:1539866618
参考: https://docs.oracle.com/javase/9/docs/api/java/time/zone/ZoneOffsetTransition.html#hashCode-
相关用法
- Java ZoneOffsetTransition of()用法及代码示例
- Java ZoneOffsetTransition getOffsetAfter()用法及代码示例
- Java ZoneOffsetTransition isValidOffset()用法及代码示例
- Java ZoneOffsetTransition toEpochSecond()用法及代码示例
- Java ZoneOffsetTransition compareTo()用法及代码示例
- Java ZoneOffsetTransition toString()用法及代码示例
- Java ZoneOffsetTransition isOverlap()用法及代码示例
- Java ZoneOffsetTransition equals()用法及代码示例
- Java ZoneOffsetTransition isGap()用法及代码示例
- Java ZoneOffsetTransition getInstant()用法及代码示例
- Java ZoneOffsetTransition getOffsetBefore()用法及代码示例
- Java BigDecimal hashCode()用法及代码示例
- Java MinguoDate hashCode()用法及代码示例
- Java Stack hashCode()用法及代码示例
- Java ThaiBuddhistDate hashCode()用法及代码示例
- Java Integer hashCode()用法及代码示例
- Java MessageFormat hashCode()用法及代码示例
- Java ZoneOffsetTransitionRule hashCode()用法及代码示例
- Java JapaneseDate hashCode()用法及代码示例
- Java BigInteger hashCode()用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 ZoneOffsetTransition hashCode() method in Java with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。