- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我在 Eclipse Mars 中有一个设置,其中有两个依赖项。两者是相同的程序,但版本不同。在这个程序中,有一个名为InitialHandler的类。该类的构造函数在程序的两个版本之间已从InitialHandler(ProxyServer, ListenerInfo) 更改为InitialHandler(BungeeCord, ListenerInfo)。 BungeeCord 是 ProxyServer 的子类。
我正在尝试创建一个与新版本和旧版本的构造函数兼容的类。为此,我的类还有两个构造函数,将各自的参数作为输入。问题是,在应该采用 BungeeCord 输入的构造函数中,super() 调用仍然使用旧依赖项中的构造函数,该依赖项使用 ProxyServer。 See a screenshot here
如何强制 super() 调用使用带有 BungeeCord 参数的构造函数版本?
最佳答案
我想出了一个可以在您的场景中工作的解决方案,但它的工作原理与您最初想要解决的问题(解决 super
调用)略有不同:
public class OpenInitialHandler extends InitialServerLegacyDelegate {
public OpenInitialHandler(BungeeCord bungee, ListenerInfo listener) {
super(bungee, listener);
}
public OpenInitialHandler(ProxyServer proxyServer, ListenerInfo listener) {
super(proxyServer, listener);
}
}
public class InitialServerLegacyDelegate /* implements and extends whatever you need */ {
private static final Constructor<InitialDelegate> targetConstructor = InitialServer.getConstructors()[0];
private final InitialServer delegate;
protected InitialServerLegacyDelegate(BungeeCord bungee, ListenerInfo listener) {
this(bungee, listener);
}
protected InitialServerLegacyDelegate(ProxyServer proxyServer, ListenerInfo listener) {
try {
// This is the critical part.
// Instead of binding/checking the constructor parameter types
// at compile-time, this will be resolved at runtime.
delegate = targetConstructor.newInstance(proxyServer, listener);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
// implement all neccessary interface methods here
// and simply make them delegate methods
}
本质上,InitialServerLegacyDelegate
处理这种遗留行为。它看起来像一个有效的父类(super class)(因为它实现了与 InitialServer
相同的接口(interface),但实际上它只是将所有调用委托(delegate)给它在运行时解析的 InitialServer
实例。
您可能面临的一个问题是:如果您的类在 OpenInitialHandler(ProxyServer proxyServer, ListenerInfo Listener)
处获取输入,其中 ProxyServer
的类型不是 BungeeCord
。在这种情况下,如果存在较新的依赖项(使用 BungeeCord
构造函数)并且它获得非 BungeeCord
输入,则实现将失败并出现 ClassCastException
。
委托(delegate)方法可以通过 Eclipse 轻松生成。欲了解更多详情,请参阅 this question on how to generate delegate methods in Eclipse .
关于Java - 强制 super() 调用使用特定依赖项中的构造函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37500558/
问题比较Java,但是我想在Android中实现: 假设有 3 个或更多类相互扩展: class A { ... int color; ... } class B extend
我知道标题听起来有点奇怪,但这正是我愿意做的。简单解释:A类是B类的子类,B类也是C类的子类>. 现在,所有这些类都包含方法m()。在我的 A 类中,这是我唯一可以访问的类,因为其他类仅在运行时可用,
我有一个 UIViewController 类 A 和 B。 A 使用以下方式加载 B:[A.view addSubView B.view]。 B 有一个带有“后退”按钮的导航栏。我想在单击时返回到
我有以下(第三方)类结构。我们将调用第三方项目 ProjectSeriously,并注意我使用 System.out.println 代替其他复杂的功能(100 行代码) . class A {
在下面的代码中,我从 Game 扩展了 MyGame。我有两个问题: 我们是否需要为所有render()、dispose()、pause()调用super方法 和 resize(w,h)?很多人都没有
例如,假设我想在调用 super.viewDidLoad() 时跳过一级。所以我希望能够做这样的事情: override func viewDidLoad() { super.super.vi
public class Faculty extends Employee { public static void main(String[] args) { new Fac
假设我有: class Superclass { //fields... methodA() {...} methodB() {...} ... } class Subclass exte
这个问题在这里已经有了答案: Why is super.super.method(); not allowed in Java? (22 个答案) 关闭 9 年前。 我怀疑我想做的事情是否可行。我有
我有一个实现 Initializable 的类。 public abstract class ExampleClass implements Initializable { public vo
我想知道,我有这个大数组,是否可以只在内存中使用一次而不是每个线程一次?以 stackoverflow 上的标签为例。他们几乎从不改变,为什么不为他们留下一个内存点呢?甚至可能将该数组永久保存在内存中
假设这三个类具有这个简单的层次结构: class A { func foo() { print("A") } } class B: A { override fu
有没有办法在 TypeScript 中调用 super.super.methodName。我想避免调用super.methodName,但我想调用二祖的methodName方法。 谢谢。 最佳答案 T
这个问题已经有答案了: When do I use super()? (11 个回答) 已关闭 7 年前。 package Geometry; public abstract class Geomet
我必须执行and()在我的实现 Predicate 的业务对象上. 出现问题的代码是 and() 行调用: Predicate predicate = new M
我有一个实现接口(interface)的抽象父类(super class): public abstract class FooMatrix implements Matrix { publi
我有四个 UIView:viewA 是 Root View ,它有 viewB 作为它的 subview 。 viewB 将 viewC 作为其 subview ,而 viewC 将 viewD 作为
有什么区别: class Child(SomeBaseClass): def __init__(self): super(Child, self).__init__() 和:
我有一个通用接口(interface) interface ListList extends List> .由于某些原因,我无法转换 ListList至 List> .有什么方法可以做到吗?为什么它不
我想调用带有两个参数的父类(super class)的构造函数,所以我调用了 super(arguments),但是编译器说: “类 Person 中的构造函数 Person 不能应用于给定类型; 要
我是一名优秀的程序员,十分优秀!