LocalDate getDayOfMonth() example
Description
LocalDate getDayOfMonth()
gets the day-of-month field.
This method returns the primitive int value for the day-of-month.
Syntax
getDayOfMonth
has the following syntax.
public int getDayOfMonth()
Example
The following example shows how to use getDayOfMonth
.
import java.time.LocalDate;
//from w w w .j av a 2 s. c o m
public class Main {
public static void main(String[] args) {
LocalDate a = LocalDate.of(2014, 6, 30);
System.out.println(a.getDayOfMonth());
}
}
The code above generates the following result.