我想知道如何表示不会失败的以下绑定的通用版本xxx cannot be used as a key it is not fully specified
install(new FactoryModuleBuilder().
implement(new TypeLiteral<SomeClass<T,?>>(){},
new TypeLiteral<SomeOtherClass<T, U>>(){}).
build(SomeFactory.class);
似乎该implement
方法不适用于参数化类型参数。