类 MultiDimensionMismatchException

所有已实现的接口:
Serializable, LocalizedException
直接已知子类:
MatrixDimensionMismatchException

@Deprecated public class MultiDimensionMismatchException extends MathIllegalArgumentException
已过时。
as of 1.0, this exception is replaced by MathIllegalArgumentException
当两组尺寸不同时抛出的异常。
另请参阅:
  • 构造器详细资料

    • MultiDimensionMismatchException

      public MultiDimensionMismatchException(Integer[] wrong, Integer[] expected)
      已过时。
      从不匹配的尺寸构造异常。
      参数:
      wrong - 错误的尺寸。
      expected - 预期的尺寸。
    • MultiDimensionMismatchException

      public MultiDimensionMismatchException(Localizable specific, Integer[] wrong, Integer[] expected)
      已过时。
      从不匹配的尺寸构造异常。
      参数:
      specific - 提供错误具体上下文的消息模式。
      wrong - 错误的尺寸。
      expected - 预期的尺寸。
  • 方法详细资料

    • getWrongDimensions

      public Integer[] getWrongDimensions()
      已过时。
      获取包含错误尺寸的数组。
      返回:
      包含错误尺寸的数组
    • getExpectedDimensions

      public Integer[] getExpectedDimensions()
      已过时。
      获取包含预期尺寸的数组。
      返回:
      包含预期尺寸的数组
    • getWrongDimension

      public int getWrongDimension(int index)
      已过时。
      获取索引处的错误尺寸。
      参数:
      index - 尺寸索引。
      返回:
      存储在index处的错误尺寸。
    • getExpectedDimension

      public int getExpectedDimension(int index)
      已过时。
      获取索引处的预期尺寸。
      参数:
      index - 尺寸索引。
      返回:
      存储在index处的预期尺寸。