使用 Scala 中的函数生成的值生成列表

发布于 2024-12-01 09:31:46 字数 377 浏览 1 评论 0原文

我必须生成一些随机数并对它们求和。 东西

result = generateList(range(0, max), generatorFunctionReturningInt()).foreach(sum _)

如果 generateList 生成一个 List ,其大小 = max 和由 generatorFunctionReturningInt 生成的值

,或者可能是类似的

result = range(0, max).map(generatorFunctionReturningInt).foreach(sum _)

I must generate some random numbers and sum them. Something like

result = generateList(range(0, max), generatorFunctionReturningInt()).foreach(sum _)

If generateList generates a List with size = max and values generated by generatorFunctionReturningInt

Or may be something like

result = range(0, max).map(generatorFunctionReturningInt).foreach(sum _)

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

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

发布评论

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

评论(4

意中人 2024-12-08 09:31:46

这个怎么样?

Stream.continually(generatorFunctionReturningInt()).take(max).sum

How about this?

Stream.continually(generatorFunctionReturningInt()).take(max).sum
浅唱ヾ落雨殇 2024-12-08 09:31:46

各种集合类型的伴随对象有一些方便的工厂方法。尝试:

Seq.fill(max)(generate)

The companion objects for various collection types have some handy factory methods. Try:

Seq.fill(max)(generate)
高速公鹿 2024-12-08 09:31:46

简单

(0 to max).map(_ => (new util.Random).nextInt(max)).sum

来说,max 定义了数字数量和随机范围。

foreach 方法旨在与副作用函数(如 println)一起使用,该函数不返回任何内容 (Unit)。

Simply

(0 to max).map(_ => (new util.Random).nextInt(max)).sum

where max defines both number of numbers and random range.

foreach method intended to be used with side-effect functions (like println) which returns nothing (Unit).

春花秋月 2024-12-08 09:31:46

foreach 不是用于返回结果,请使用 map 代替:

val result = Range (0, max).map (generatorFunctionReturningInt).map (sum _)

具体来说, sum 已经预定义了,不是吗?

val result = Range (0, max).map (generatorFunctionReturningInt).sum

工作代码(我们都喜欢工作代码)

val result = Range (0, 15).map (3 + _).sum
result: Int = 150

对于这个简单的情况,它与 Range (3, 18).sum 相同。

foreach is not for returning results, use map instead:

val result = Range (0, max).map (generatorFunctionReturningInt).map (sum _)

specifically, sum is already predefined, isn't it?

val result = Range (0, max).map (generatorFunctionReturningInt).sum

working code (we all like working code)

val result = Range (0, 15).map (3 + _).sum
result: Int = 150

For this trivial case it is the same as Range (3, 18).sum.

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