當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


Java ZoneOffsetTransition hashCode()用法及代碼示例

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-




相關用法


注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 ZoneOffsetTransition hashCode() method in Java with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。