MonthDay getDayOfMonth()
gets the day-of-month field.
getDayOfMonth
has the following syntax.
public int getDayOfMonth()
The following example shows how to use getDayOfMonth
.
import java.time.MonthDay; //from w ww . j a v a 2 s .c om public class Main { public static void main(String[] args) { MonthDay m = MonthDay.now(); int n = m.getDayOfMonth(); System.out.println(n); } }
The code above generates the following result.