评估 2D 流时出现 OutOfMemoryError

发布于 2024-10-21 20:08:22 字数 305 浏览 1 评论 0原文

为什么以下会导致 OutOfMemoryError

scala> Stream.tabulate(3, 4)(_ + _)
res0: scala.collection.immutable.Stream[scala.collection.immutable.Stream[Int]] = Stream(Stream(0, ?), ?)

scala> res0.length

同样的情况也发生在 sizeforce 方法的应用上。

Why does the following lead to OutOfMemoryError?

scala> Stream.tabulate(3, 4)(_ + _)
res0: scala.collection.immutable.Stream[scala.collection.immutable.Stream[Int]] = Stream(Stream(0, ?), ?)

scala> res0.length

The same happens on application of size and force methods.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

漫雪独思 2024-10-28 20:08:22

2.8 中有一个 bug:“Stream.tabulate 创建无限流”

看看。
http://lampsvn.epfl.ch/trac/scala/ticket/3508

There is a bug in 2.8: "Stream.tabulate creates an infinite stream"

Have a look.
http://lampsvn.epfl.ch/trac/scala/ticket/3508

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文