public class Test{
public static void say(String hello){
System.out.println(hello);
}
}
类测试有一个静态方法“说”,我怎样才能截获这个静态方法?有没有办法使用 InvocationHandler 工作?
提前致谢
public class Test{
public static void say(String hello){
System.out.println(hello);
}
}
类测试有一个静态方法“说”,我怎样才能截获这个静态方法?有没有办法使用 InvocationHandler 工作?
提前致谢