Wednesday, September 3, 2025
HomeLanguagesJavaYear getValue() method in Java with Examples

Year getValue() method in Java with Examples

The getValue() method of Year class in Java is used to get the integral value of the current Year object.

Syntax:

public int getValue()

Parameter: This method does not accepts any parameter.

Return Value: It returns an integer denoting the value of the current year object.

Below programs illustrate the getValue() method of Year in Java:

Program 1:




// Program to illustrate the getvalue() method
  
import java.util.*;
import java.time.*;
import java.time.format.DateTimeFormatter;
  
public class GfG {
    public static void main(String[] args)
    {
        // Creates a Year object
        Year firstYear = Year.of(1997);
  
        // Print the value of the current year
        // using getValue() method
        System.out.println(firstYear.getValue());
    }
}


Output:

1997

Program 2:




// Program to illustrate the getvalue() method
  
import java.util.*;
import java.time.*;
import java.time.format.DateTimeFormatter;
  
public class GfG {
    public static void main(String[] args)
    {
        // Creates a Year object
        Year firstYear = Year.of(2018);
  
        // Print the value of the current year
        // using getValue() method
        System.out.println(firstYear.getValue());
    }
}


Output:

2018

Reference: https://docs.oracle.com/javase/8/docs/api/java/time/Year.html#getValue–

RELATED ARTICLES

Most Popular

Dominic
32260 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6625 POSTS0 COMMENTS
Nicole Veronica
11795 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11854 POSTS0 COMMENTS
Shaida Kate Naidoo
6746 POSTS0 COMMENTS
Ted Musemwa
7023 POSTS0 COMMENTS
Thapelo Manthata
6694 POSTS0 COMMENTS
Umr Jansen
6714 POSTS0 COMMENTS