java.time.chrono.ThaiBuddhistDate類的getLong()方法用於檢索長格式傳遞的時間字段。
用法:
public long getLong(TemporalField field)
參數:此方法將任何類型的時間字段作為參數。
返回值:此方法以長格式返回傳遞的時間字段。
下麵是說明getLong()方法的示例:
範例1:
// Java program to demonstrate
// getLong() method
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] argv)
{
try {
// Creating and initializing
// ThaiBuddhistDate Object
ThaiBuddhistDate hidate
= ThaiBuddhistDate.now();
// Getting temporal field in long format
// by using getLong() method
long tempo
= hidate.getLong(
ChronoField.EPOCH_DAY);
// Display the result
System.out.println(
"Specified temporal field"
+ "in long format:"
+ tempo);
}
catch (DateTimeException e) {
System.out.println(
"Passed parameter can"
+ " not form a date");
System.out.println(
"Exception thrown:"
+ e);
}
}
}
輸出:
Specified temporal fieldin long format:18385
範例2:
// Java program to demonstrate
// getLong() method
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] argv)
{
try {
// Creating and initializing
// ThaiBuddhistDate Object
ThaiBuddhistDate hidate
= ThaiBuddhistDate.now();
// Getting temporal field in long format
// by using getLong() method
long tempo
= hidate.getLong(
ChronoField.DAY_OF_WEEK);
// Display the result
System.out.println(
"Specified temporal field"
+ "in long format:"
+ tempo);
}
catch (DateTimeException e) {
System.out.println(
"Passed parameter can"
+ " not form a date");
System.out.println(
"Exception thrown:"
+ e);
}
}
}
輸出:
Specified temporal fieldin long format:7
相關用法
- Java HijrahDate getLong()用法及代碼示例
- Java Month getLong()用法及代碼示例
- Java JapaneseDate getLong()用法及代碼示例
- Java Array getLong()用法及代碼示例
- Java MinguoDate getLong()用法及代碼示例
- Java ThaiBuddhistDate of()用法及代碼示例
- Java ThaiBuddhistDate from()用法及代碼示例
- Java ZonedDateTime getLong()用法及代碼示例
- Java OffsetTime getLong()用法及代碼示例
- Java ChronoZonedDateTime getLong()用法及代碼示例
- Java ChronoLocalDate getLong()用法及代碼示例
- Java YearMonth getLong()用法及代碼示例
- Java ByteBuffer getLong()用法及代碼示例
- Java Instant getLong()用法及代碼示例
- Java ChronoLocalDateTime getLong()用法及代碼示例
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 ThaiBuddhistDate getLong() method in Java with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。