Scala中有没有办法禁止对函数使用命名参数?
例子:
def func(num: Int, power: Int) = math.pow(num, power)
func(3, 2) // OK
func(num = 3, power = 2) // Forbidden
Scala中有没有办法禁止对函数使用命名参数?
例子:
def func(num: Int, power: Int) = math.pow(num, power)
func(3, 2) // OK
func(num = 3, power = 2) // Forbidden
您可以使用函数文字:
val func = (num: Int, power: Int) => math.pow(num, power)
func(3, 2)
func(num = 3, power = 2) // "error: not found: value num"
(虽然Function2
'apply
仍然有参数名称:)
func(v1 = 3, v2 = 2)
这是我的建议:
apm@mara:~$ scalac -deprecation -Xfatal-warnings
Welcome to Scala version 2.11.0-20130923-052707-7d570b54c3 (OpenJDK 64-Bit Server VM, Java 1.7.0_25).
Type in expressions to have them evaluated.
Type :help for more information.
scala> def f(@deprecatedName('x) x: Int) = 2 * x
f: (x: Int)Int
scala> f(3)
res0: Int = 6
scala> f(x = 4)
<console>:9: warning: naming parameter x has been deprecated.
f(x = 4)
^
error: No warnings can be incurred under -Xfatal-warnings.
不幸的是,尽管它是一个简单的调整,但今天它并不能那样工作。
您今天看到的错误是:
error: deprecated parameter name x has to be distinct from any other parameter name (deprecated or not).
弃用参数的当前名称是否有意义?
JavaDoc 说:
@Deprecated 注释的程序元素是不鼓励程序员使用的程序元素,通常是因为它很危险,或者因为存在更好的替代方案。
如果您可以鼓励用户在调用函数时不使用命名参数,那么您应该能够彻底弃用这种用法。
也许对新错误有更好的措辞:
warning: that parameter is he-who-must-not-be-named!