Java中YearMonth类的getLong()方法用于从此year-month中获取长字段形式的指定字段的值。此方法在year-month中查询指定字段的值。如果由于不支持该字段或出于某些其他原因而无法返回该值,则会引发异常。
用法:
public long getLong(TemporalField field)
参数:此方法接受field作为参数,该参数表示需要其值的TemporalField。
返回值:此方法返回该字段的long值。
异常:此方法引发以下异常:
- DateTimeException-如果无法获取该字段的值,或者该值超出该字段的有效值范围。
- UnsupportedTemporalTypeException-如果不支持该字段或值的范围超过int。
- ArithmeticException-如果发生数字溢出。
以下示例程序旨在说明Java中YearMonth的getLong()方法:
程序1:
// Java program to demonstrate
// YearMonth.getLong() method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create YearMonth object
YearMonth yearmonth
= YearMonth.of(2019, 4);
// apply getLong() method
// of YearMonth class to get year
long year
= yearmonth.getLong(
ChronoField.YEAR_OF_ERA);
// It will store only year
// in variable of type long
// print results
System.out.println("YEAR:" + year);
}
}
输出:
YEAR:2019
程序2:
// Java program to demonstrate
// YearMonth.getLong() method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create YearMonth object
YearMonth yearmonth
= YearMonth.of(2019, 4);
// apply getLong() method
// of YearMonth class to get month
long month
= yearmonth.getLong(
ChronoField.MONTH_OF_YEAR);
// It will store only month
// in variable of type long
// print results
System.out.println("MONTH:" + month);
}
}
输出:
MONTH:4
相关用法
- Java Instant getLong()用法及代码示例
- Java ChronoZonedDateTime getLong()用法及代码示例
- Java ByteBuffer getLong()用法及代码示例
- Java LocalDate getLong()用法及代码示例
- Java Field getLong()用法及代码示例
- Java OffsetDateTime getLong()用法及代码示例
- Java Year getLong()用法及代码示例
- Java ChronoLocalDateTime getLong()用法及代码示例
- Java ZonedDateTime getLong()用法及代码示例
- Java OffsetTime getLong()用法及代码示例
- Java ChronoLocalDate getLong()用法及代码示例
- Java LocalTime getLong()用法及代码示例
- Java MonthDay getLong()用法及代码示例
- Java ZoneOffset getLong(TemporalField)用法及代码示例
- Java YearMonth now()用法及代码示例
注:本文由纯净天空筛选整理自pp_pankaj大神的英文原创作品 YearMonth getLong() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。