gpt4 book ai didi

scala - 省略一些隐式参数

转载 作者:行者123 更新时间:2023-12-02 02:00:30 25 4
gpt4 key购买 nike

是否可以省略一些隐式参数而不是全部?我尝试使用命名参数:

def foo(implicit a: Int, b: String) {
if (a > 0) {
println(b)
foo(a = a-1) // error
}
}

不幸的是,编译器拒绝了 foo 的递归调用。和:
not enough arguments for method foo
Unspecified value parameter b

最佳答案

遗漏一些隐式参数是不可能的。所以,在你的例子中

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

不可能只指定 a .但是,您可以指定隐式参数的默认值,例如
def foo(implicit a: Int, b: String = "---"): Unit = ???

哪里如果 b不是隐式可用的, "---"将会被使用。

请记住 implicit关键字将参数列表标记为隐式,而不是将那个参数标记为隐式。

关于scala - 省略一些隐式参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17467203/

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