我想做以下事情:
public class ImmutableList<T> {
public <U super T> ImmutableList<U> add(U element) { ... }
}
也就是说,给定T
的不可变列表,您可以向列表中添加任何U
以生成U
的不可变列表,其约束为U
必须是T
的超类型。例如
Object
列表(假设岩石和原始人不共享其他共同祖先)。理论上这听起来很棒,但U
的下限对于JLS而言并不合法。我可以写一下:
public class ImmutableList<T> {
public ImmutableList<T> add(T element) { ... }
public static <U> ImmutableList<U> add(ImmutableList<? extends U> list, U element) { ... }
}
以这种方式,编译器将正确地推断列表的元素类型与我们想要添加的U
之间的最小上限。这是合法的。它也很糟糕。比较:
// if 'U super T' were legal
list.add(monkey).add(human).add(rock);
// assuming 'import static ImmutableList.add'
add(add(add(list, monkey), human), rock);
我是函数式编程的忠实粉丝,但我不希望我的Java代码看起来像Lisp方言。所以我有三个问题:
WTF?为什么<U super T>
绑定不合法?这个问题实际上已在此之前被问过("Why can't a Java type parameter have a lower bound?"),但我认为那里的问题有点混乱,而那里的答案归结为“它没有用,”我并不真正购买。
JLS section 4.5.1表示:“与方法签名中声明的普通类型变量不同,使用通配符时不需要类型推断。因此,允许在通配符上声明下限。”给定上面的替代static
方法签名,编译器显然能够推断出它需要的最小上限,因此参数似乎被打破了。有人可以说它不是吗?
最重要的是:任何人都可以考虑使用下限绑定我的方法签名吗?简而言之,目标是让代码看起来像Java(list.add(monkey)
)而不是Lisp(add(list, monkey)
)。
答案 0 :(得分:2)
你几乎可以做到这一点,但Java类型的推断设法足以让它变得不值得。
public abstract class ImmutableList< T > {
public interface Converter< U, V > {
V convert( U u );
}
public abstract < U > ImmutableList< U > map( Converter< ? super T, ? extends U > cnv );
public static class EmptyIL< T > extends ImmutableList< T >{
@Override
public < U > EmptyIL< U > map( Converter< ? super T, ? extends U > cnv ) {
return new EmptyIL< U >();
}
}
public static class NonEmptyIL< T > extends ImmutableList< T > {
private final T tHead;
private final ImmutableList< ? extends T > ltTail;
public NonEmptyIL( T tHead, ImmutableList< ? extends T > ltTail ) {
this.tHead = tHead;
this.ltTail = ltTail;
}
@Override
public < U > NonEmptyIL< U > map( Converter< ? super T, ? extends U > cnv ) {
return new NonEmptyIL< U >( cnv.convert( tHead ), ltTail.map( cnv ) );
}
}
public < U > ImmutableList< U > add( U u, final Converter< ? super T, ? extends U > cnv ) {
return new NonEmptyIL< U >( u, map( cnv ) );
}
public static < V > Converter< V, V > id() {
return new Converter< V, V >() {
@Override public V convert( V u ) {
return u;
}
};
}
public static < W, U extends W, V extends W > Converter< W, W > sup( U u, V v ) {
return id();
}
static class Rock {}
static class Hominid {}
static class Human extends Hominid {}
static class Monkey extends Hominid {}
static class Chimpanzee extends Monkey {}
public static void main( String[] args ) {
Monkey monkey = new Monkey();
Human human = new Human();
Rock rock = new Rock();
// id() should suffice, but doesn't
new EmptyIL< Chimpanzee >().
add( monkey, ImmutableList.< Monkey >id() ).
add( human, ImmutableList.< Hominid >id() ).
add( rock, ImmutableList.< Object >id() );
// sup() finds the supremum of the two arguments' types and creates an identity conversion
// but we have to remember what we last added
new EmptyIL< Chimpanzee >().
add( monkey, sup( monkey, monkey ) ).
add( human, sup( monkey, human ) ). // add( human, sup( monkey, monkey ) ) also works
add( rock, sup( human, rock ) );
}
}
您至少可以在类型之间获得可转换性的编译时强制执行,并且作为额外的奖励,您可以定义自己的转换器,而不仅仅是子类化。但是你不能让Java知道在没有转换器的情况下它应该使用适当的子类转换器作为默认值,这将把我们带到你的原始API。