Java GregorianCalendar getLeastMaximum()方法与示例

GregorianCalendar类getLeastMaximum()方法

  • getLeastMaximum()方法在java.util包中可用。

  • getLeastMaximum()方法用于获取此GregorianCalendar对象中指定日历字段(fi)的最小值。

  • getLeastMaximum()方法是一个非静态方法,仅可通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。

  • 返回给定字段可以容纳的最小最大值时,getLeastMaximum()方法不会引发异常。

语法:

    public int getLeastMaximum(int fi);

参数:

  • int fi –表示GregorianCalendar字段(fi)。

返回值:

此方法的返回类型为int,它返回给定字段(fi)的最小最大值。

示例

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class RegexMatches {
    public static void main(String args[]) {

        //要扫描以找到模式的字符串。
        String line = "This order was placed for QT3000! OK?";
        String pattern = "(.*)(\\d+)(.*)";

        //创建一个Pattern对象
        Pattern r = Pattern.compile(pattern);

        //现在创建匹配对象。
        Matcher m = r.matcher(line);
        if (m.find()) {
            System.out.println("Found value: " + m.group(0));
            System.out.println("Found value: " + m.group(1));
            System.out.println("Found value: " + m.group(2));
        } else {
            System.out.println("NO MATCH");
        }
    }
}

输出结果

Found value: This order was placed for QT3000! OK?
Found value: This order was placed for QT300
Found value: 0