博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
date.after方法_Java Date after()方法与示例
阅读量:2529 次
发布时间:2019-05-11

本文共 1719 字,大约阅读时间需要 5 分钟。

date.after方法

日期类after()方法 (Date Class after() method)

  • after() method is available in java.util package.

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

  • after() method is used to check whether this date is after the given date (d) or not.

    after()方法用于检查此日期是否在给定日期(d)之后。

  • after() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.

    after()方法是一种非静态方法,只能通过类对象访问,如果尝试使用类名访问该方法,则会收到错误消息。

  • after() method may throw an exception at the time of the checking date.

    after()方法可能在检查日期时引发异常。

    NullPointerException: This exception may throw when the given parameter (d) is null exists.

    NullPointerException :如果给定参数(d)为null,则可能引发此异常。

Syntax:

句法:

public boolean after(Date d);

Parameter(s):

参数:

  • Date d – represents the Date object to be tested.

    Date d –表示要测试的Date对象。

Return value:

返回值:

The return type of this method is boolean, it returns true when this date is after the given Date (d) otherwise it returns false.

此方法的返回类型为boolean ,如果此日期在给定Date(d)之后,则返回true,否则返回false。

Example:

例:

// Java program to demonstrate the example // of boolean after() method of Date import java.util.*;public class AfterDate {
public static void main(String[] args) {
// create two Date object with two dates Date this_date = new Date(2016, 8, 20); Date given_date = new Date(2010, 11, 30); // By using after() method is to check // whether this date (this_date) is after the // given date (given_date) or not boolean status = this_date.after(given_date); // Display status System.out.println("this_date.after(given_date): " + status); }}

Output

输出量

this_date.after(given_date): true

翻译自:

date.after方法

转载地址:http://lmxzd.baihongyu.com/

你可能感兴趣的文章
507 LOJ 「LibreOJ NOI Round #1」接竹竿
查看>>
UI基础--烟花动画
查看>>
2018. 2.4 Java中集合嵌套集合的练习
查看>>
精通ASP.NET Web程序测试
查看>>
vue 根据不同属性 设置背景
查看>>
51Nod1601 完全图的最小生成树计数 Trie Prufer编码
查看>>
Codeforces 1110D. Jongmah 动态规划
查看>>
android驱动在win10系统上安装的心酸历程
查看>>
优雅的程序员
查看>>
oracle之三 自动任务调度
查看>>
Android dex分包方案
查看>>
ThreadLocal为什么要用WeakReference
查看>>
删除本地文件
查看>>
FOC实现概述
查看>>
base64编码的图片字节流存入html页面中的显示
查看>>
这个大学时代的博客不在维护了,请移步到我的新博客
查看>>
GUI学习之二十一——QSlider、QScroll、QDial学习总结
查看>>
nginx反向代理docker registry报”blob upload unknown"解决办法
查看>>
gethostbyname与sockaddr_in的完美组合
查看>>
kibana的query string syntax 笔记
查看>>