2

我有两种方法看起来像这样。一种是通用方法,另一种不是。

<T> void a(final Class<T> type, final T instance) {
}
void b(final Class<?> type, final Object instance) {

    if (!Objects.requireNotNull(type).isInstance(instance)) {
        throw new IllegalArgumentException(instance + " is not an instance of " + type);
    }

    // How can I call a(type, instance)?
}

我如何拨打a()type拨打?instanceb()

4

2 回答 2

5

使用通用辅助方法:

void b(final Class<?> type, final Object instance) {

    if (!type.isInstance(instance)) {
        // throw exception
    }

    bHelper(type, instance);
}

private <T> void bHelper(final Class<T> type, final Object instance) {
    final T t = type.cast(instance);
    a(type, t);
}

Class.cast将抛出ClassCastExceptionif instanceis not a T(因此可能不需要您之前的检查)。

于 2013-11-11T05:01:57.810 回答
0

例如像这样

a(String.class, new String("heloo"));
于 2013-11-11T05:00:02.973 回答