java.time.MonthDay hashCode()方法

java.time.MonthDay.hashCode()方法获取此月-日的哈希码。

1 语法

public int hashCode()

2 参数

3 返回值

该方法返回一个合适的哈希码。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.time.MonthDay hashCode()方法
 */
import java.time.MonthDay;

public class MonthDayDemo {
   public static void main(String[] args) {

      MonthDay time = MonthDay.parse("--12-30");
      System.out.println(time.hashCode());  
   }
}

输出结果为:

798

 

热门文章

优秀文章