From e68270b5380ea4ae98db1bc9daa2485489995fbf Mon Sep 17 00:00:00 2001 From: hltj Date: Sat, 28 Oct 2023 22:04:43 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E5=85=85=E9=83=A8=E5=88=86=E7=BF=BB?= =?UTF-8?q?=E8=AF=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/topics/equality.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/topics/equality.md b/docs/topics/equality.md index 8779cccdb1e..751d7e8b735 100644 --- a/docs/topics/equality.md +++ b/docs/topics/equality.md @@ -39,12 +39,12 @@ a?.equals(b) ?: (b === null) 当相等性检测的两个操作数都是静态已知的(可空或非空的)`Float` 或 `Double` 类型时,该检测遵循 [IEEE 754 浮点数运算标准](https://en.wikipedia.org/wiki/IEEE_754)。 -否则会使用不符合该标准的结构相等性检测,这会导致 `NaN` 等于其自身,`NaN` is considered greater than any other element, including `POSITIVE_INFINITY`, 而 `-0.0` 不等于 `0.0`。 +否则会使用不符合该标准的结构相等性检测,这会导致 `NaN` 等于其自身,认为 `NaN` 比包括 `POSITIVE_INFINITY` 在内的任何其他元素都大, 而 `-0.0` 不等于 `0.0`。 更多信息请参见[浮点数比较](numbers.md#浮点数比较)。 -## Array equality +## 数组相等性 -To compare whether two arrays have the same elements in the same order, use [`contentEquals()`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/content-equals.html). +如需比较两个数组是否具有相同顺序的相同元素,请使用 [`contentEquals()`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/content-equals.html)。 -For more information, see [Compare arrays](arrays.md#compare-arrays). \ No newline at end of file +更多信息请参见[比较数组](arrays.md#比较数组)。 \ No newline at end of file