YearMonth hashCode() example
Description
YearMonth hashCode()
returns a hash code for this year-month.
Syntax
hashCode
has the following syntax.
public int hashCode()
Example
The following example shows how to use hashCode
.
import java.time.YearMonth;
/*from w ww . j av a2s. c o m*/
public class Main {
public static void main(String[] args) {
YearMonth y = YearMonth.now();
System.out.println(y.hashCode());
}
}
The code above generates the following result.