如何满足参数类型Class <! - ?在java中扩展someInterface - >

时间:2018-05-14 18:41:24

标签: java generics

考虑以下代码

@Test
public void testFunction() {
    // This cause error
    callDoSomething(new myInterfaceImpl());
}

public interface myInterface {
    int doSomething();
}

public class myInterfaceImpl implements myInterface {
    public int doSomething() {
        return 1;
    }
}

public void callDoSomething(Class<? extends myInterface> myVar) {
    System.out.println(myVar.doSomething());
}

在这一行callDoSomething(new myInterfaceImpl());我收到以下错误。

Error:(32, 25) java: incompatible types: com.myProject.myTest.myInterfaceImpl 
cannot be converted to java.lang.Class<? extends com.myProject.myTest.myInterface>

如何满足参数类型?如果只提供了一个界面。

我想绑定具有接口的类,但似乎这对我来说不可用

Class<? implements myInterace>

编辑:

我想这样做的原因是因为我想提供一个自定义的kafka分区程序。

    public Builder<K, V> withCustomPartitionner(Class<? extends Partitioner> customPartitioner) {
        this.customPartitioner = customPartitioner;
        return this;
    }

4 个答案:

答案 0 :(得分:2)

看起来您希望能够在给定的参数上调用方法。在这种情况下,您需要接口的实际实例,而不是与之关联的类。

public void callDoSomething(myInterface myVar) {
    System.out.println(myVar.doSomething());
}
如果您想使用反射对您感兴趣的特定类类型执行某些操作,则会使用

Class<>

public void outputClassInfo(Class<? extends myInterface> myClass) {
    System.out.println(myClass.getName());
}

如果这是你想要的,那么你想在编译时提供这样的课程:

outputClassInfo(myInterfaceImpl.class);

或者,如果你不知道在运行之前你正在处理哪个类,你可以使用反射:

myInterface thing = getThing();
outputClassInfo(thing.getClass());

因此,在您编辑中提供的示例中,我猜测您想要:

public Builder<K, V> withCustomPartitioner(Class<? extends Partitioner> customPartitioner) {
    this.customPartitioner = customPartitioner;
    return this;
}

// Usage
builder
    .withCustomPartitioner(FooPartitioner.class)
    ...

答案 1 :(得分:1)

callDoSomething的参数不应该是一个类。它必须是该类的实例或它的子类。

public <T extends myInterface> void callDoSomething(T myVar) {
    System.out.println(myVar.doSomething());
}

另外,请不要以小写字母命名Java类/接口。

正如Andy Turner @正确提到的那样,这里不需要使用类型参数,您可以将类型称为myInterface

public void callDoSomething(myInterface myVar) {
    System.out.println(myVar.doSomething());
}

答案 2 :(得分:1)

此类型Class<? extends myInterface> myVar对应于Class实例,而不是myInterface的实例。
您通常不会将类作为参数传递(但出于反射目的或绕过泛型擦除)。所以你需要的参数可能是:

public void callDoSomething(myInterface myVar) {
    System.out.println(myVar.doSomething());
}

你可以调用:

@Test
public void testFunction() {
    // This cause error
    callDoSomething(new myInterfaceImpl());
}

答案 3 :(得分:0)

您需要传递Peers而不是实例。

Class