gpt4 book ai didi

Scala 前置于 ListBuffer 益智游戏

转载 作者:行者123 更新时间:2023-12-01 10:49:38 25 4
gpt4 key购买 nike

使用 Scala 2.10.3。以下代码对我有用:

val sequence = new ListBuffer[Int]()
sequence.+=:(x)

但是如果我写:

val sequence = new ListBuffer[Int]()
sequence +=: x

我得到:

value +=: is not a member of Int
sequence +=: x
^

我错过了什么?

最佳答案

任何以 : 结尾的运算符都是右结合的。

所以当你写的时候:

sequence +=: x

它被解析为:

x.+=:(sequence)

这当然会失败,因为 x 没有 +=: 方法

关于Scala 前置于 ListBuffer 益智游戏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21766025/

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