-1
我正在練習從https://www.scala-exercises.org/std_lib/implicits斯卡拉暗示練習
對於下列問題,我的答案似乎不正確,但我不知道爲什麼。
object MyPredef {
class KoanIntWrapper(val original: Int) {
def isOdd = original % 2 != 0
def isEven = !isOdd
}
implicit def thisMethodNameIsIrrelevant(value: Int) =
new KoanIntWrapper(value)
}
import MyPredef._
//imported implicits come into effect within this scope
19.isOdd should be(true) //my answer but it seem incorrect
)
20.isOdd should be(false) //my answer but it seem incorrect
的錯誤是There was a problem evaluating your answer, please try again later.
請忽略此問題。問題發生是因爲我的會話超時了。 –