YearMonth getMonthValue()
gets the month-of-year field from 1 to 12.
getMonthValue
has the following syntax.
public int getMonthValue()
The following example shows how to use getMonthValue
.
import java.time.YearMonth; //ww w . ja v a2 s .c o m public class Main { public static void main(String[] args) { YearMonth y = YearMonth.now(); int m = y.getMonthValue(); System.out.println(m); } }
The code above generates the following result.