本文整理了Java中java.math.MathContext.equals()
方法的一些代码示例,展示了MathContext.equals()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。MathContext.equals()
方法的具体详情如下:
包路径:java.math.MathContext
类名称:MathContext
方法名:equals
[英]Returns true if x is a MathContext with the same precision setting and the same rounding mode as this MathContext instance.
[中]如果x是与此MathContext实例具有相同精度设置和相同舍入模式的MathContext,则返回true。
代码示例来源:origin: espertechinc/esper
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
MathContextCodegenField that = (MathContextCodegenField) o;
return mathContext != null ? mathContext.equals(that.mathContext) : that.mathContext == null;
}
代码示例来源:origin: eobermuhlner/big-math
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Context other = (Context) obj;
return mathContext.equals(other.mathContext);
}
代码示例来源:origin: optimatika/ojAlgo
/**
* @see java.lang.Object#equals(java.lang.Object)
*/
@Override
public boolean equals(final Object obj) {
if (this == obj) {
return true;
}
if (!super.equals(obj)) {
return false;
}
if (!(obj instanceof NumberContext)) {
return false;
}
final NumberContext other = (NumberContext) obj;
if (myMathContext == null) {
if (other.myMathContext != null) {
return false;
}
} else if (!myMathContext.equals(other.myMathContext)) {
return false;
}
if (myScale != other.myScale) {
return false;
}
return true;
}
代码示例来源:origin: org.ojalgo/ojalgo
/**
* @see java.lang.Object#equals(java.lang.Object)
*/
@Override
public boolean equals(final Object obj) {
if (this == obj) {
return true;
}
if (!super.equals(obj)) {
return false;
}
if (!(obj instanceof NumberContext)) {
return false;
}
final NumberContext other = (NumberContext) obj;
if (myMathContext == null) {
if (other.myMathContext != null) {
return false;
}
} else if (!myMathContext.equals(other.myMathContext)) {
return false;
}
if (myScale != other.myScale) {
return false;
}
return true;
}
内容来源于网络,如有侵权,请联系作者删除!