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


Java ThaiBuddhistChronology dateNow(Clock)用法及代码示例


java.time.chrono.ThaiBuddhistChronology类的dateNow()方法用于根据ThaiBuddhist日历系统从指定的时钟对象获取当前ThaiBuddhist日期。

用法:

public ThaiBuddhistDate dateNow(Clock clock)

参数:此方法将时钟对象作为参数,该参数用于根据ThaiBuddhist日历系统从指定的时钟对象获取当前ThaiBuddhist日期。



返回值:此方法根据ThaiBuddhist日历系统从指定的时钟对象返回ThaiBuddhist日期。

下面是说明dateNow()方法的示例:

范例1:

// Java program to demonstrate 
// dateNow() method 
  
import java.util.*; 
import java.io.*; 
import java.time.*; 
import java.time.chrono.*; 
  
public class GFG { 
    public static void main(String[] argv) 
    { 
        try { 
            // creating and initializing 
            // ThaiBuddhistDate Object 
            ThaiBuddhistDate hidate 
                = ThaiBuddhistDate.now(); 
  
            // getting ThaiBuddhistChronology 
            // used in ThaiBuddhistDate 
            ThaiBuddhistChronology crono 
                = hidate.getChronology(); 
  
            // creating and initializing 
            // clock object 
            Clock clock = Clock.systemUTC(); 
  
            // getting ThaiBuddhistDate for the 
            // given clock object 
            // by using dateNow() method 
            ThaiBuddhistDate date 
                = crono.dateNow(clock); 
  
            // display the result 
            System.out.println( 
                "ThaiBuddhistDate is:"
                + date); 
        } 
        catch (DateTimeException e) { 
            System.out.println( 
                "passed parameter can "
                + "not form a date"); 
            System.out.println( 
                "Exception thrown:" + e); 
        } 
    } 
}
输出:
JapaneseDate is:Japanese Heisei 32-03-11

范例2:

// Java program to demonstrate 
// dateNow() method 
  
import java.util.*; 
import java.io.*; 
import java.time.*; 
import java.time.chrono.*; 
  
public class GFG { 
    public static void main(String[] argv) 
    { 
        try { 
            // creating and initializing 
            // ThaiBuddhistDate Object 
            ThaiBuddhistDate hidate 
                = ThaiBuddhistDate.now(); 
  
            // getting ThaiBuddhistChronology 
            // used in ThaiBuddhistDate 
            ThaiBuddhistChronology crono 
                = hidate.getChronology(); 
  
            // creating and initializing 
            // clock object 
            Clock clock = Clock.systemUTC(); 
  
            // setting clock 
            clock = Clock.tick( 
                clock, 
                Duration.ofDays(100)); 
  
            // getting ThaiBuddhistDate for the 
            // given clock object 
            // by using dateNow() method 
            ThaiBuddhistDate date 
                = crono.dateNow(clock); 
  
            // display the result 
            System.out.println( 
                "ThaiBuddhistDate is:"
                + date); 
        } 
        catch (DateTimeException e) { 
            System.out.println( 
                "passed parameter can "
                + "not form a date"); 
            System.out.println( 
                "Exception thrown:" + e); 
        } 
    } 
}
输出:
ThaiBuddhistDate is:ThaiBuddhist BE 2563-02-08

参考: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ThaiBuddhistChronology.html#dateNow-java.time.Clock-




相关用法


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