請問一下各位
小弟在scala中使用redis的library
https://github.com/xetorthio/jedis
其中 ScanParams 中有一個method的名稱叫做match
與scala中的關鍵字重複了
請問這時候要如何處理?
因為看來編譯器把這個match當成語法中的match了
我寫法如下
val params = new ScanParams()
params.match(kw)
錯誤訊息
error: identifier expected but 'match' found.
error: '{' expected but '(' found.