gpt4 book ai didi

scala - 无法基于 ...Inclusive[Long] 类型的集合构造具有 Long 类型元素的 ...Inclusive[Long] 类型集合

转载 作者:行者123 更新时间:2023-12-01 20:05:24 27 4
gpt4 key购买 nike

我不确定我是否理解为什么会发生以下情况。

编译并运行:

使用 Int 而不转换为 List

import scala.util.Random
val xs = 1 to 10
Random.shuffle(xs)

转换为List后使用Longs

import scala.util.Random
val xs = 1L to 10L
Random.shuffle(xs.toList) //<-- I had to materialize it to a list

无法编译

使用Long转换为List

val xs = 1L to 10L
Random.shuffle(xs)

这个抛出了这个异常:

Error: Cannot construct a collection of type scala.collection.immutable.NumericRange.Inclusive[Long] with elements of type Long based on a collection of type scala.collection.immutable.NumericRange.Inclusive[Long].  Random.shuffle(xs)                ^

我很好奇为什么?是因为缺少 CanBuildFrom 或类似的东西吗?没有一个有充分的理由吗?

(scala 版本 2.11.5)

最佳答案

这是因为 CanBuildFrom(1) 和类型推断机制(2)。

1) 您可能会发现 Range/NumericRangegenericBuilder (对于 Inclusive 也是如此)是:

 genericBuilder[B]: Builder[B, IndexedSeq[B]]

因此只有 CanBuildFrom[Range, B, IndexedSeq] 使用此构建器。原因很简单,你可以在builder的描述中找到它:

A builder lets one construct a collection incrementally, by adding elements to the builder with += and then converting to the required collection type with result.

您无法逐步构建包含范围,因为那时它不再是一个范围(但仍然是一个IndexedSeq);但是,您可以使用 Seq 进行此类构造。

只是为了演示 IndexedSeqInclusive 之间的区别

scala> (1 to 5)
res14: scala.collection.immutable.Range.Inclusive = Range(1, 2, 3, 4, 5)

scala> (1 to 5) ++ (7 to 10) //builder used here
res15: scala.collection.immutable.IndexedSeq[Int] = Vector(1, 2, 3, 4, 5, 7, 8, 9, 10)

这意味着您无法“构建”任何范围,无论是 Int (Range) 或 Long (Numeric),并且您应该始终将 IndexedSeq 作为构建器的 To 参数传递。但是,当您将 IndexedSeq 传递给 shuffle 函数时,它会自动为 Int (Range) 指定。

2) 它不适用于 NumericRange.Inclusive[T]因为它是多态类型(通用)。同时,常规Range.Inclusive (非泛型)显式扩展 IndexedSeq[Int]。查看随机签名:

shuffle[T, CC[X] <: TraversableOnce[X]](xs: CC[T])(implicit bf: CanBuildFrom[CC[T], T, CC[T]]): CC[T]

高阶类型 CC 在这里变为 NumericRange.Inclusive,因为它是 NumericRange.Inclusive 继承的最大参数化类型。对于 Range.Inclusive,这是一个 IndexedSeq(因为较小的 Range.Inclusive 不是通用的)。所以 Range.Inclusive 很幸运没有受到 (1) 的影响。

最后,这将起作用:

scala> Random.shuffle[Long, IndexedSeq](xs)
res8: IndexedSeq[Long] = Vector(9, 3, 8, 6, 7, 2, 5, 4, 10, 1)

scala> Random.shuffle(xs: IndexedSeq[Long])
res11: IndexedSeq[Long] = Vector(6, 9, 7, 3, 1, 8, 5, 10, 4, 2)

关于scala - 无法基于 ...Inclusive[Long] 类型的集合构造具有 Long 类型元素的 ...Inclusive[Long] 类型集合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28815324/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com