Concrete classes with abstract type members

后端 未结 2 1420
一个人的身影
一个人的身影 2020-12-06 07:44

Given the following traits and class. Why does this compile? Can this be actually used for something?

trait Container {
  type A
}

trait AnotherContainer[B         


        
2条回答
  •  Happy的楠姐
    2020-12-06 08:09

    It looks harmless if useless to me. The type that x wants doesn't exist, so you can't pass it to the method. Whether harmless uselessness should be a compile-time error is a matter of taste, I suppose.

    If you look at what x actually does, it decompiles thusly:

    public java.lang.Object x(java.lang.Object);
      Code:
       0:   aload_1
       1:   areturn
    

    which is exactly what the identity method should do (load the argument regardless of type, return it). You can write something equivalent with much less code:

    trait AbstractType { type T }
    class Useless extends AbstractType { def identity(t: AbstractType#T) = t }
    

    Except nothing has type AbstractType#T, so again we have uselessness.

    Unless I'm missing something.

提交回复
热议问题