gpt4 book ai didi

Scala:过滤器强制评估整个流

转载 作者:行者123 更新时间:2023-12-01 02:29:04 25 4
gpt4 key购买 nike

以下代码从类的构造函数内部调用一次的方法本身调用一次。当它作为规范 UnitTest 的一部分被执行时,测试会卡住,并且会产生一个快速消耗更多内存的 javaw 进程。

private def placeMines( excludes: List[( Int, Int )] ) {
def rndstream: Stream[( Int, Int )] = {
def s: Stream[( Int, Int )] =
( Random.nextInt( ysize ), Random.nextInt( xsize ) ) #:: s
s
}
def posPermitted( pos: ( Int, Int ) ): Boolean = {
!excludes.contains( pos ) &&
fieldEmpty( pos._1, pos._2 )
}
val positions = rndstream.filter( posPermitted )
positions.take( minecount ).foreach( x => grid( x._1 )( x._2 ) = MineField() )
}

为了找出发生了什么,我用副作用注释掉了最后一行(网格是一个二维数组),并用不同的谓词替换了过滤谓词,包括 x => false 和 x => true。有趣的是,它在 true 情况下终止,但一直以 false 运行。插入一些 printlns 显示在我终止 java 进程之前谓词被调用了数十万次。

我尝试使用以下代码重现这种情况:
import scala.util.Random
import org.specs.SpecificationWithJUnit

class foobar extends SpecificationWithJUnit {
val x = 0xDead
val y = 0xBeef

bar(x, y)

private def bar(x: Int, y: Int) = foo(x)

private def foo(x: Int) = {
def s: Stream[( Int, Int )] = {
def p: Stream[( Int, Int )] =
( Random.nextInt( x ), Random.nextInt( y ) ) #:: p
p
}
val fiveodd = s.filter( x => x._1 % 2 == 1 )
println( fiveodd.take( 5 ).toList )
}
}

但是,该代码运行得很好。

搜索“scala 流过滤器无休止”、“scala 流过滤器强制评估”和“scala 流过滤器不会终止”只提供了展示流用法的教程,这些教程在原则上与我的代码相同。

最佳答案

我猜你的过滤功能有问题。 Stream.filter尝试找到第一个匹配值,如果没有,它将永远搜索。

以您的示例流并调用

s.filter(_ => false)

这不会返回,因此它必须是您的过滤器功能。

关于Scala:过滤器强制评估整个流,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14259516/

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