Example usage for java.time MonthDay hashCode

List of usage examples for java.time MonthDay hashCode

Introduction

In this page you can find the example usage for java.time MonthDay hashCode.

Prototype

@Override
public int hashCode() 

Source Link

Document

A hash code for this month-day.

Usage

From source file:Main.java

public static void main(String[] args) {
    MonthDay m = MonthDay.now();

    System.out.println(m.hashCode());

}