Friday 16 March 2018

How to use get and getLong methods of Year Class which accepts Temporal field | Java 8 Date and Time


Click here to watch on Youtube: 
https://www.youtube.com/watch?v=PEm02hr1GS4&list=UUhwKlOVR041tngjerWxVccw

YearDemo.java

import java.time.Year;
import java.time.temporal.ChronoField;

public class YearDemo
{

    public static void main(String[] args)
    {

        Year year = Year.of(2017);

        /*
         * Parameters:
         *
         * field - the field to get, not null
         *
         * Returns:
         *
         * the value for the field
         */


        int yearValue1 = year.get(ChronoField.YEAR);
        System.out.println(yearValue1);

        /*
         * Parameters:
         *
         * field - the field to get, not null
         *
         * Returns:
         *
         * the value for the field
         */

        long yearValue2 = year.getLong(ChronoField.YEAR);
        System.out.println(yearValue2);

    }

}

Output

2017
2017

Click the below link to download the code:
https://sites.google.com/site/ramj2eev2/java_basics/YearDemo_get_field.zip?attredirects=0&d=1

Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava_2018/YearDemo_get_field

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/8e3f14caa10b52912934997a22df069c728f47b4/BasicJava_2018/YearDemo_get_field/?at=master

See also:

  • All JavaEE Videos Playlist
  • All JavaEE Videos
  • All JAVA EE Links
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Java Collection Framework Tutorial
  • JAVA Tutorial
  • Kids Tutorial
  • Cooking Tutorial
  • No comments:

    Post a Comment