Click here to watch on Youtube:
https://www.youtube.com/watch?v=mA7nqkq-GiQ&list=UUhwKlOVR041tngjerWxVccw
CalendarDemo.java
Output
Click the below link to download the code:
https://sites.google.com/site/ramj2eev2/java_basics/CalendarDemo_getGreatestMinimum.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava_2018/CalendarDemo_getGreatestMinimum
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/fcab7bc6a80f12c850b8ccc28d71601c94666bbb/BasicJava_2018/CalendarDemo_getGreatestMinimum/?at=master
See also:
All JavaEE Videos Playlist
All JavaEE Videos
All JAVA EE Links
Spring Tutorial
Servlets Tutorial
All Design Patterns Links
JDBC Tutorial
Java Collection Framework Tutorial
JAVA Tutorial
Kids Tutorial
Cooking Tutorial
https://www.youtube.com/watch?v=mA7nqkq-GiQ&list=UUhwKlOVR041tngjerWxVccw
CalendarDemo.java
import java.util.Calendar;
public class CalendarDemo
{
public static void main(String[] args)
{
Calendar cal = Calendar.getInstance();
/*
* Parameters:
*
* field - the calendar field.
*
* Returns:
*
* the highest minimum value for the given calendar field.
*/
int greatestMinimum = cal.getGreatestMinimum(Calendar.YEAR);
System.out.println("greatestMinimum = " + greatestMinimum);
/*
* Parameters:
*
* field - the calendar field.
*
* Returns:
*
* the lowest maximum value for the given calendar field.
*
*/
int leastMaximum = cal.getLeastMaximum(Calendar.YEAR);
System.out.println("leastMaximum = " + leastMaximum);
}
}
public class CalendarDemo
{
public static void main(String[] args)
{
Calendar cal = Calendar.getInstance();
/*
* Parameters:
*
* field - the calendar field.
*
* Returns:
*
* the highest minimum value for the given calendar field.
*/
int greatestMinimum = cal.getGreatestMinimum(Calendar.YEAR);
System.out.println("greatestMinimum = " + greatestMinimum);
/*
* Parameters:
*
* field - the calendar field.
*
* Returns:
*
* the lowest maximum value for the given calendar field.
*
*/
int leastMaximum = cal.getLeastMaximum(Calendar.YEAR);
System.out.println("leastMaximum = " + leastMaximum);
}
}
Output
greatestMinimum = 1
leastMaximum = 292269054
leastMaximum = 292269054
Click the below link to download the code:
https://sites.google.com/site/ramj2eev2/java_basics/CalendarDemo_getGreatestMinimum.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava_2018/CalendarDemo_getGreatestMinimum
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/fcab7bc6a80f12c850b8ccc28d71601c94666bbb/BasicJava_2018/CalendarDemo_getGreatestMinimum/?at=master
See also:
No comments:
Post a Comment