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


Java java.time.Month.minus()用法及代码示例



描述

这个java.time.Month.minus(long months)方法返回 month-of-year,它是在此之前指定的月数。

声明

以下是声明java.time.Month.minus(long months)方法。

public Month minus(long months)

参数

months- 减去的月份,正数或负数。

返回值

结果月份,不为空。

示例

下面的例子展示了 java.time.Month.minus(long Month) 方法的用法。

package com.tutorialspoint;

import java.time.Month;

public class MonthDemo {
   public static void main(String[] args) {
 
      Month month = Month.of(5);
      System.out.println(month);  
      System.out.println(month.minus(1));  
   }
}

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

MAY
APRIL

相关用法


注:本文由纯净天空筛选整理自 java.time.Month.minus() Method Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。