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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。