Java Calendar isLenient() 方法



描述

Java Calendar isLenient() 方法用于判断日期和时间的解释是否宽松。

声明

以下是 java.util.Calendar.isLenient() 方法的声明

public boolean isLenient()

参数

返回值

如果解释模式为宽松,则返回 true;否则返回 false

异常

在当前日期日历实例中检查是否设置了 isLenient 示例

以下示例演示了 Java Calendar isLenient() 方法的使用。我们使用 getInstance() 方法创建当前日期的日历实例,并使用 getTime() 方法打印日期和时间,以及使用 isLenient() 方法打印宽松设置。

package com.tutorialspoint;

import java.util.Calendar;

public class CalendarDemo {
   public static void main(String[] args) {
   
      // create a calendar    
      Calendar cal = Calendar.getInstance();

      // print the time
      System.out.println("Date And Time Is: " + cal.getTime());
	  
      // print the isLenient
      System.out.println("Interpretation Is lenient: " + cal.isLenient());
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Date And Time Is: Mon Sep 26 21:18:54 IST 2022
Interpretation Is lenient: true

在当前日期 GregorianCalendar 实例中检查是否设置了 isLenient 示例

以下示例演示了 Java Calendar hashCode() 方法的使用。我们使用 GregorianCalendar() 方法创建当前日期的日历实例,并使用 getTime() 方法打印日期和时间,以及使用 isLenient() 方法检查宽松设置。

package com.tutorialspoint;

import java.util.Calendar;
import java.util.GregorianCalendar;

public class CalendarDemo {
   public static void main(String[] args) {
   
      // create a calendar    
      Calendar cal = new GregorianCalendar();

      // print the time
      System.out.println("Date And Time Is: " + cal.getTime());

      // print the isLenient
      System.out.println("Interpretation Is lenient: " + cal.isLenient());
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Date And Time Is: Mon Sep 26 21:19:40 IST 2022
Interpretation Is lenient: true

在给定日期 GregorianCalendar 实例中检查是否设置了 isLenient 示例

以下示例演示了 Java Calendar hashCode() 方法的使用。我们使用 GregorianCalendar() 方法创建特定日期的日历实例,并使用 getTime() 方法打印日期和时间,以及使用 isLenient() 方法检查宽松设置。

package com.tutorialspoint;

import java.util.Calendar;
import java.util.GregorianCalendar;

public class CalendarDemo {
   public static void main(String[] args) {
   
      // create a calendar    
      Calendar cal = new GregorianCalendar(2025,8,26);

      // print the time
      System.out.println("Date And Time Is: " + cal.getTime());
	  
      // print the isLenient
      System.out.println("Interpretation Is lenient: " + cal.isLenient());
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Date And Time Is: Fri Sep 26 00:00:00 IST 2025
Interpretation Is lenient: true
java_util_calendar.htm
广告