leaving out some implicit parameters

后端 未结 2 1497
陌清茗
陌清茗 2021-01-20 15:27

Is it possible to leave out some implicit parameters but not all of them? I tried with named parameters:

def foo(implicit a: Int, b: String) {
  if (a > 0         


        
2条回答
  •  温柔的废话
    2021-01-20 16:20

    It is not possible to leave out some implicit parameters. So, in your example

    def foo(implicit a: Int, b: String): Unit = ???
    

    It is not possible to only specify a. However, you can specify the default value of the implicit parameter, for example

    def foo(implicit a: Int, b: String = "---"): Unit = ???
    

    Where if b is not implicitly available, "---" will be used.

    Remember that the implicit keyword marks the parameter list as implicit, not that one parameter as implicit.

提交回复
热议问题