⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 e111. creating a proxy object.txt

📁 这里面包含了一百多个JAVA源文件
💻 TXT
字号:
 public interface MyInterface {
        void method();
    }
    
    public class MyInterfaceImpl implements MyInterface {
        public void method() {
        }
    }
    
    public class ProxyClass implements InvocationHandler {
        Object obj;
        public ProxyClass(Object o) {
            obj = o;
        }
    
        public Object invoke(Object proxy, Method m, Object[] args) throws Throwable {
            Object result = null;
            try {
                // Do something before the method is called ...
                result = m.invoke(obj, args);
            } catch (InvocationTargetException e) {
            } catch (Exception eBj) {
            } finally {
                // Do something after the method is called ...
            }
            return result;
        }
    }
    
    // This fragment creates a proxy for a MyInterface object.
    MyInterface myintf = (MyInterface)Proxy.newProxyInstance(
        MyInterface.class.getClassLoader(),
        new Class[]{MyInterface.class},
        new ProxyClass(new MyInterfaceImpl()));
    
    // Invoke the method
    myintf.method();

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -