java.math.MathContext.equals()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(1.9k)|赞(0)|评价(0)|浏览(101)

本文整理了Java中java.math.MathContext.equals()方法的一些代码示例,展示了MathContext.equals()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。MathContext.equals()方法的具体详情如下:
包路径:java.math.MathContext
类名称:MathContext
方法名:equals

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;
}

相关文章