声明部分函数时,出现“扩展函数缺少参数类型”错误

时间:2019-04-01 05:44:48

标签: scala intellij-idea type-inference scalatest

我在声明部分函数的类型推断时遇到了一些问题。我在下面尝试了Scalatest代码:

class FunSpecTest extends FunSpec {
    describe("Partial Function Test") {
        def sum1(a: Int, b: Int): Int = a + b

        def sum2 = (a: Int, b: Int) => a + b // type-inference hints shown in Intellij

        val sum3 = (a: Int, b: Int) => a + b

        describe("Partial Function with 2 params") {
            it("add 2") {
                val sum1val: Int => Int = sum1(_, 2)
                assertResult(3)(sum1val(1))

                def sum2def = sum2(_, 2)// compilation error, but type-inference hints shown in Intellij
                val sum2val = sum2(_, 2)// compilation error
                assertResult(3)(sum2def(1))
                assertResult(3)(sum2val(1))

                val sum3val: Int => Int = sum3(_, 2)
                assertResult(3)(sum3val(1))

                val sum3valWithoutType= sum3(_, 2) // compilation error
                assertResult(3)(sum3valWithoutType(1))
            }
        }

    }
}

我的intelliJ editor中没有显示任何警告/错误

在我运行测试类之前,有一些编译错误: missing parameter type for expanded function

但是sum2defsum2valScala shell without given function type中工作正常

我认为Scala编译器应该能够推断sum2defsum2val的类型,而无需说明函数类型Int => Int

我的问题是:

  1. 为什么我的intellij编辑器在编译代码之前不向我显示错误/警告?我的代码在Scala语法中有效吗?如果无效,如何设置我的intellij以显示错误?
  2. 为什么我在intellij中使用的代码无法编译,但在scala shell中可以正常工作?
  3. valdef在我的理解上表现不同吗? def显示函数推断类型,而val没有显示。

谢谢

1 个答案:

答案 0 :(得分:0)

回答您的两个问题:

1:例如:Scala unexpectedly not being able to ascertain type for expanded functionWhy do I get a "missing parameter for expanded function" in one case and not the other?

3:我相信这确实是IntellIJ的一种实现选择,我对此表示赞同。我不想为我定义的每个String或Int值提供类型提示。我