私は次のものを持っています:
public class Helper {
public void doSomething(List<? extends MyClass> p1, Collection<? extends MyClass> c1) {
final <? extends MyClass> var1 = p1.get(0); // what should be here for the type ?
}
}
どうすればこれを機能させることができますか?
ありがとう。