java 反射重写方法,Java反射:如何在运行时覆盖或生成方法?

  • Post author:
  • Post category:java


It is possible in plain Java to override a method of a class

programmatically at runtime (or even create a new method)?

I want to be able to do this even if I don’t know the classes at compile time.

What I mean exactly by overriding at runtime:

abstract class MyClass{

public void myMethod();

}

class Overrider extends MyClass{

@Override

public void myMethod(){}

}

class Injector{

public static void myMethod(){ // STATIC !!!

// do actual stuff

}

}

// some magic code goes here

Overrider altered = doMagic(

MyClass.class, Overrider.class, Injector.class);

Now, this invocation…

altered.myMethod();

…would call Injector.myMethod() instead of Overrider.myMethod().

Injector.myMethod() is static, because, after doing “magic”

it is invoked from different class instance (it’s the Overrider),

(so we prevent it from accessing local fields).

解决方案

You can use something like cglib for generating code on-the-fly