奇怪的错误:
scala> Parameter.with("published", false)
<console>:1: error: identifier expected but 'with' found.
Parameter.with("published", false)
^
Scala,此对象来自Java RestFB库this is the Parameter
object's javadoc。
想法?
答案 0 :(得分:5)
with
是Scala中的保留关键字。
您需要在反向标记中包装方法名称以指定您没有使用内置关键字:
Parameter.`with`("published", false)
答案 1 :(得分:4)
围绕with
:
Parameter.`with`("published, false")
with
是Scala关键字。它用于混合特征。