gpt4 book ai didi

java - 接受包含特定方法的对象而不是接受特定类型

转载 作者:行者123 更新时间:2023-12-01 07:00:36 25 4
gpt4 key购买 nike

[编辑]:这个问题是关于我无法控制的类型。因此让它们继承父类(super class)或实现接口(interface)是不可能的。我希望能够在不包装类型的情况下执行此操作。

我想编写一个方法,该方法接受包含特定方法的所有对象作为参数。

例如,我们有 2 个完全不同的类型,它们都包含具有相同签名的 get 方法:

public class TypeOne {
public int get() { /* Some implementation */ }
}

public class TypeTwo {
public int get() { /* Some other implementation */ }
}

如何编写一个接受这两种类型的方法?

public static int callGetOnObject(GettableObject gettableObject) {
return gettableObject.get();
}

最佳答案

首先使方法成为非静态的,然后让两个类都实现具有 get 方法的接口(interface)。最后,更改 callGetOnObject 以接受实现该接口(interface)的类的实例:

public interface Getter {
int get();
}

public class TypeOne implements Getter {
public int get() { /* Some implementation */ }
}

public class TypeTwo implements Getter {
public int get() { /* Some other implementation */ }
}

然后:

public static int callGetOnObject(Getter gettableObject) {
return gettableObject.get();
}

编辑:

既然问题被修改了,这里就有了新的答案:如果你不控制这段代码并且你不愿意包装它,那么你就不走运了:据我所知,没办法做到这一点。

关于java - 接受包含特定方法的对象而不是接受特定类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56642643/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com