Java中接口/抽象类的动态实现

时间:2011-08-02 15:25:23

标签: java dynamic proxy dynamic-proxy

构建接口和/或抽象类的动态实现的事实上的解决方案是什么?我基本上想要的是:

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

1 个答案:

答案 0 :(得分:16)

这是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);