Java中Period類的hashCode()方法用於獲取此期間生成的hashCode。
用法:
public int hashCode()
參數:此方法不接受任何參數。
返回值:此方法返回在給定時間段內生成的hashCode。
以下程序說明了Java中的hashCode()方法:
程序1:
// Java code to show the function hashCode()
// to get the hashCode for the given period
import java.time.Period;
import java.time.temporal.ChronoUnit;
public class PeriodDemo {
// Function to generate hashCode for the given period
static void getNumberOfDays(int year, int months, int days)
{
Period period = Period.of(year, months, days);
System.out.println(period.hashCode());
}
// Driver Code
public static void main(String[] args)
{
int year = 12;
int months = 3;
int days = 31;
getNumberOfDays(year, months, days);
}
}
輸出:
2032396
程序2:
// Java code to show the function hashCode()
// to get the hashCode for the given period
import java.time.Period;
import java.time.temporal.ChronoUnit;
public class PeriodDemo {
// Function to generate hashCode for the given period
static void getNumberOfDays(int year, int months, int days)
{
Period period = Period.of(year, months, days);
System.out.println(period.hashCode());
}
// Driver Code
public static void main(String[] args)
{
int year = -12;
int months = 3;
int days = 31;
getNumberOfDays(year, months, days);
}
}
輸出:
2032372
參考: https://docs.oracle.com/javase/8/docs/api/java/time/Period.html#hashCode–
相關用法
- Java Period get()用法及代碼示例
- Java Period between()用法及代碼示例
- Java Period from()用法及代碼示例
- Java Period plus()用法及代碼示例
- Java Period of()用法及代碼示例
- Java Period getYears()用法及代碼示例
- Java Period isZero()用法及代碼示例
- Java Period minusMonths()用法及代碼示例
- Java Period minusDays()用法及代碼示例
- Java Period toTotalMonths()用法及代碼示例
- Java Period withYears()用法及代碼示例
- Java Period plusMonths()用法及代碼示例
- Java Period minusYears()用法及代碼示例
- Java Period ofMonths()用法及代碼示例
- Java Period ofWeeks()用法及代碼示例
注:本文由純淨天空篩選整理自barykrg大神的英文原創作品 Period hashCode() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。