Sto avendo difficoltà a comprendere il messaggio di errore di scalac in questo esempio:utilizzando Java metodo generico da Scala
Bean.java
public class Bean {
static public class Attribute<T> {
public final String name;
public Attribute(String name) {this.name = name;}
// equals and hashcode omitted for simplicity
}
public <T> void set(Attribute<T> attribute, T value) {}
public static Attribute<Long> AGE = new Attribute<Long>("age");
}
Test.scala
object Test {
def test() {
val bean = new Bean();
bean.set(Bean.AGE, 2L);
}
}
compilando yeilds questo (provato con scalac 2.9.2):
Test.scala:4: error: type mismatch;
found : Bean.Attribute[java.lang.Long]
required: Bean.Attribute[Any]
Note: java.lang.Long <: Any, but Java-defined class Attribute is invariant in type T.
You may wish to investigate a wildcard type such as `_ <: Any`. (SLS 3.2.10)
bean.set(Bean.AGE, 2L);
^
one error found
perché è necessario attributo [Qualsiasi]? Fare stesso in Java funziona bene
grazie
java.util.Long? typo –
@PrinceJohnWesley Oops. Sì. Corretto. Grazie. – Jatin
Non pensi '23: java.lang.Long' sembra un po 'meglio? O anche 'b.set [java.lang.Long] (Bean.AGE, 23)'. – senia