當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java java.time.Year.isAfter()用法及代碼示例



描述

這個java.time.Year.isAfter(Year other)方法檢查此 year-month 是否在指定年份之後

聲明

以下是聲明java.time.Year.isAfter(Year other)方法。

public boolean isAfter(Year other)

參數

other- 另一年進行比較,不為空。

返回值

如果今年在指定年份之後,則為 true。

示例

下麵的例子展示了 java.time.Year.isAfter(Year other) 方法的用法。

package com.tutorialspoint;

import java.time.Year;

public class YearDemo {
   public static void main(String[] args) {
 
      Year date = Year.of(2016);
      Year date1 = Year.of(2017);
      System.out.println(date1.isAfter(date));  
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果——

true

相關用法


注:本文由純淨天空篩選整理自 java.time.Year.isAfter() Method Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。