The java.util.Date.before(Date when) method checks if this date is before the specified date.
Syntax:public boolean before(Date when)
Example:import java.util.*;
public class DateDemo {
public static void main(String[] args) {
// create 2 dates
Date date = new Date(11, 5, 21);
Date date2 = new Date(15, 1, 21);
// tests if date 2 is before date and print
boolean before = date2.before(date);
System.out.println("Date 2 is before date: " + before);
// tests if date is before date 2 and print
before = date.before(date2);
System.out.println("Date is before date 2: " + before);
}
}
License.
All information of this service is derived from the free sources and is provided solely in the form of quotations.
This service provides information and interfaces solely for the familiarization (not ownership) and under the "as is" condition.
Copyright 2016 © ELTASK.COM. All rights reserved.
Site is optimized for mobile devices.
Downloads: 152 / 159177971. Delta: 0.00286 с