java.math.MathContext.hashCode() 返回MathContext的雜湊程式碼。
以下是java.math.MathContext.hashCode()方法的宣告
public int hashCode()
Object類中的hashCode
NA
此方法返回這個MathContext的雜湊程式碼。
NA
下面的例子顯示math.MathContext.hashCode()方法的用法
package com.yiibai; 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 321136182 Hashcode of mc2 is 642580997