标签: scala
当我在Scala REPL中定义一个函数时,我可以看到创建函数的类型,如下所示:
scala> def testing(a: Int) = a + 1 testing: (a: Int)Int
当我不在REPL时,如何看到函数testing: (a:Int)Int?说,我想知道库在运行时使用的函数类型,所以我可以使用相同的类型。
testing: (a:Int)Int
先谢谢。