当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.math.MathContext.hashCode()用法及代码示例



描述

这个java.math.MathContext.hashCode()返回此 MathContext 的哈希码。

声明

以下是声明java.math.MathContext.hashCode()方法。

public int hashCode()

覆盖

类中的哈希码Object

参数

NA

返回值

此方法返回此 MathContext 的哈希码。

异常

NA

示例

下面的例子展示了 math.MathContext.hashCode() 方法的用法。

package com.tutorialspoint;

import java.math.*;

public class MathContextDemo {

   public static void main(String[] args) {

      // create 2 MathContext objects
      MathContext mc1, mc2;

      // assign context settings to mc1, mc2
      mc1 = new MathContext(5);
      mc2 = new MathContext(20, RoundingMode.UNNECESSARY);

      // create 2 int objects
      int i1, i2;

      // assign hashcode of mc1, mc2 to i1, i2
      i1 = mc1.hashCode();
      i2 = mc2.hashCode();

      String str1 = "Hashcode of mc1 is " + i1;
      String str2 = "Hashcode of mc2 is " + i2;

      // print i1, i2 values
      System.out.println( str1 );
      System.out.println( str2 );
   }
}

让我们编译并运行上面的程序,这将产生以下结果——

Hashcode of mc1 is 1802290004
Hashcode of mc2 is -1299934805

相关用法


注:本文由纯净天空筛选整理自 Java.math.MathContext.hashCode() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。