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


Java MonthDay now(ZoneId)用法及代码示例


Java中MonthDay类的now(ZoneId zone)方法用于从指定时区的系统时钟中获取当前的month-day。

用法:

public static MonthDay now(ZoneId zone)

参数:此方法接受ZoneId作为参数。



返回值:此方法使用系统时钟返回当前的month-day。

以下示例程序旨在说明Java中MonthDay的now(ZoneId zone)方法:

程序1:

// Java program to demonstrate 
// MonthDay.now(ZoneId zone) method 
  
import java.time.*; 
import java.time.temporal.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // apply now(ZoneId zone) method 
        // of MonthDay class 
        MonthDay result = MonthDay.now( 
            ZoneId.systemDefault()); 
  
        // print both month and day 
        System.out.println("MonthDay:"
                           + result); 
    } 
}
输出:
MonthDay:--05-09

程序2:

// Java program to demonstrate 
// MonthDay.now(ZoneId zone) method 
  
import java.time.*; 
import java.time.temporal.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // apply now(ZoneId zone) method 
        // of MonthDay class 
        MonthDay result = MonthDay.now( 
            ZoneId.systemDefault()); 
  
        // print only month 
        System.out.println("Month:"
                           + result.getMonth()); 
    } 
}
输出:
Month:MAY

参考文献: https://docs.oracle.com/javase/10/docs/api/java/time/MonthDay.html#now(java.time.ZoneId)




相关用法


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