MonthDay 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.MonthDay; /* w w w .ja v a 2s . c o m*/ public class Main { public static void main(String[] args) { MonthDay m = MonthDay.now(); int n = m.getMonthValue(); System.out.println(n); } }
The code above generates the following result.