本文整理了Java中java.math.MathContext.hashCode()
方法的一些代码示例,展示了MathContext.hashCode()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。MathContext.hashCode()
方法的具体详情如下:
包路径:java.math.MathContext
类名称:MathContext
方法名:hashCode
[英]Returns the hash code for this MathContext instance.
[中]返回此MathContext实例的哈希代码。
代码示例来源:origin: eobermuhlner/big-math
@Override
public int hashCode() {
return mathContext.hashCode();
}
代码示例来源:origin: espertechinc/esper
public int hashCode() {
return mathContext != null ? mathContext.hashCode() : 0;
}
}
代码示例来源:origin: optimatika/ojAlgo
/**
* @see java.lang.Object#hashCode()
*/
@Override
public int hashCode() {
final int prime = 31;
int result = super.hashCode();
result = (prime * result) + ((myMathContext == null) ? 0 : myMathContext.hashCode());
result = (prime * result) + myScale;
return result;
}
代码示例来源:origin: org.ojalgo/ojalgo
/**
* @see java.lang.Object#hashCode()
*/
@Override
public int hashCode() {
final int prime = 31;
int result = super.hashCode();
result = (prime * result) + ((myMathContext == null) ? 0 : myMathContext.hashCode());
result = (prime * result) + myScale;
return result;
}
内容来源于网络,如有侵权,请联系作者删除!