当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java MonthDay get()用法及代码示例


Java中MonthDay类的get()方法从此month-day中以int形式获取指定字段的值。

用法:

public int get(TemporalField field)

参数:此方法接受一个参数字段,该字段指定要获取的字段,而不是null。


返回值:该函数返回该字段的值。

异常:该函数引发三个exp,如下所述:

  • DateTimeException:当无法获得该字段的值或该值超出该字段的有效值范围时,抛出此错误。
  • UnsupportedTemporalTypeException:当不支持该字段或值的范围超过int时抛出
  • ArithmeticException:发生数值溢出时抛出。

以下示例程序旨在说明MonthDay.get()方法:

示例1:

// Program to illustrate the get() method 
  
import java.util.*; 
import java.time.*; 
import java.time.temporal.ChronoField; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
  
        // Parses the date 
        MonthDay tm1 
            = MonthDay.parse("--10-12"); 
  
        System.out.println( 
            tm1.get(ChronoField.DAY_OF_MONTH)); 
    } 
}
输出:
12

示例2:

// Program to illustrate the get() method 
  
import java.util.*; 
import java.time.*; 
import java.time.temporal.ChronoField; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
  
        // Parses the date 
        MonthDay tm1 
            = MonthDay.parse("--12-06"); 
  
        System.out.println( 
            tm1.get(ChronoField.DAY_OF_MONTH)); 
    } 
}
输出:
6

示例3:演示DateTimeParseException

// Program to illustrate the get() method 
  
import java.util.*; 
import java.time.*; 
import java.time.temporal.ChronoField; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
  
        try { 
  
            // Parses the date 
            MonthDay tm1 
                = MonthDay.parse("--13-12"); 
  
            System.out.println( 
                tm1.get(ChronoField.DAY_OF_MONTH)); 
        } 
        catch (Exception e) { 
            System.out.println(e); 
        } 
    } 
}
输出:
java.time.format.DateTimeParseException:
 Text '--13-12' could not be parsed:
 Unable to obtain MonthDay from TemporalAccessor:
 {DayOfMonth=12, MonthOfYear=13},
 ISO of type java.time.format.Parsed

参考: https://docs.oracle.com/javase/8/docs/api/java/time/MonthDay.html#get-java.time.temporal.TemporalField-



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 MonthDay get() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。