当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Scala ArrayOps.sizeCompare用法及代码示例


sizeCompare 方法(或属性)属于 scala.collection.ArrayOps 类(class),其相关用法说明如下。

用法:

def sizeCompare(otherSize: Int): Int

将此数组的大小与测试值进行比较。

值参数:

otherSize

与大小进行比较的测试值。

返回:

一个值 x 其中

x <  0       if this.size <  otherSize
x == 0       if this.size == otherSize
x >  0       if this.size >  otherSize

源码:

ArrayOps.scala

相关用法


注:本文由纯净天空筛选整理自scala-lang.org大神的英文原创作品 ArrayOps.sizeCompare。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。