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


Java Period getMonths()用法及代码示例


Java中Period类的getMonths()方法用于获取当前使用该月的月数。

用法:

public int getMonths()

参数:此方法不接受任何参数。


返回值:此函数返回给定期间的月数。

注意:12个月与1年之间存在差异。

以下示例程序旨在说明上述方法:

示例1:

// Java code to show the function getMonths() 
// to get number of months from given period 
import java.time.Period; 
import java.time.temporal.ChronoUnit; 
  
public class PeriodDemo { 
  
    // Function to get number of months of given period 
    static void getNumberOfDays(int year, int months, int days) 
    { 
        Period period = Period.of(year, months, days); 
        System.out.println(period.getMonths()); 
    } 
  
    // Driver Code 
    public static void main(String[] args) 
    { 
  
        int year = 0; 
        int months = 10; 
        int days = 365; 
  
        getNumberOfDays(year, months, days); 
    } 
}
输出:
10

程序2:这不会将13个月转换为一年。

// Java code to show the function getMonths() 
// to get number of months from given period 
import java.time.Period; 
import java.time.temporal.ChronoUnit; 
  
public class PeriodDemo { 
  
    // Function to get number of months of given period 
    static void getNumberOfDays(int year, int months, int days) 
    { 
        Period period = Period.of(year, months, days); 
        System.out.println(period.getMonths()); 
    } 
  
    // Driver Code 
    public static void main(String[] args) 
    { 
  
        int year = 1; 
        int months = 13; 
        int days = 36; 
  
        getNumberOfDays(year, months, days); 
    } 
}
输出:
13


相关用法


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