java Java中接口/抽象类的动态实现
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/6914476/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-10-30 17:53:01 来源:igfitidea点击:
Dynamic implementation for interface/abstract class in Java
提问by Andrey Agibalov
What's the de-facto solution for building dynamic implementation of interfaces and/or abstract classes? What I basically want is:
构建接口和/或抽象类的动态实现的事实上的解决方案是什么?我基本上想要的是:
interface IMyEntity {
int getValue1();
void setValue1(int x);
}
...
class MyEntityDispatcher implements WhateverDispatcher {
public Object handleCall(String methodName, Object[] args) {
if(methodName.equals("getValue1")) {
return new Integer(123);
} else if(methodName.equals("setValue")) {
...
}
...
}
}
...
IMyEntity entity = Whatever.Implement<IMyEntity>(new MyEntityDispatcher());
entity.getValue1(); // returns 123
回答by Joachim Sauer
It's the Proxy
class.
是Proxy
班级。
class MyInvocationHandler implements InvocationHandler {
Object invoke(Object proxy, Method method, Object[] args) {
if(method.getName().equals("getValue1")) {
return new Integer(123);
} else if(method.getName().equals("setValue")) {
...
}
...
}
}
InvocationHandler handler = new MyInvocationHandler();
IMyEntity e = (IMyEntity) Proxy.newProxyInstance(IMyEntity.class.getClassLoader(),
new Class[] { IMyEntity.class },
handler);