java.util.Calendar isLenient()方法
java.util.Calendar.isLenient() 方法将通知日期和时间的解释是否为宽松的。
1 语法
public boolean isLenient()
2 参数
无
3 返回值
如果解释模式是宽松的,则为true;如果它不是则为false。
4 示例1
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.Calendar isLenient()方法的例子
*/
import java.util.*;
public class CalendarDemo {
public static void main(String[] args) {
// create a calendar
Calendar cal = Calendar.getInstance();
// displays the current calendar
System.out.println("Current Date and Time is " + cal.getTime());
// tells whether date/time interpretation is lenient.
boolean b = cal.isLenient();
System.out.println("Interpretation is lenient: " + b);
}
}
输出结果为:
Current Date and Time is Sat May 05 17:06:13 EEST 2012
Interpretation is lenient: true
热门文章
优秀文章