码迷,mamicode.com
首页 > 其他好文 > 详细

代理模式Proxy

时间:2019-06-14 16:23:09      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:color   new   pre   public   col   ted   row   客户   bundle   

public class MainActivity extends AppCompatActivity {

    TextView textView;
    Button button;
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        textView = findViewById(R.id.text);
        button = findViewById(R.id.button);
        ProxySubject subject = new ProxySubject(new RealSubject());//客户端
        subject.visit();

    }
    public interface Subject {
        void visit();
    }
    public  class RealSubject implements Subject {

        private String name = "byhieg";
        @Override
        public void visit() {
            System.out.println(name);
        }
    }
    public  class ProxySubject implements Subject{

        private Subject subject;

        public ProxySubject(Subject subject) {
            this.subject = subject;
        }

        @Override
        public void visit() {
            subject.visit();
        }
    }
    }

静态代理

public class MainActivity extends AppCompatActivity {

    TextView textView;
    Button button;
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        textView = findViewById(R.id.text);
        button = findViewById(R.id.button);
        Subject realSubject = new RealSubject();
        DynamicProxy proxy = new DynamicProxy(realSubject);
        ClassLoader classLoader = realSubject.getClass().getClassLoader();
        Subject subject = (Subject) Proxy.newProxyInstance(classLoader, new  Class[]{Subject.class}, proxy);
        subject.visit();

    }
    public interface Subject {
        void visit();
    }
    public  class RealSubject implements Subject {

        private String name = "byhieg";
        @Override
        public void visit() {
            System.out.println(name);
        }
    }
    public class DynamicProxy implements InvocationHandler {
        private Object object;
        public DynamicProxy(Object object) {
            this.object = object;
        }

        @Override
        public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
            Object result = method.invoke(object, args);
            return result;
        }
    }
    }

动态代理

创建动态代理的对象,需要借助Proxy.newProxyInstance。该方法的三个参数分别是:
ClassLoader loader表示当前使用到的appClassloader。
Class<?>[] interfaces表示目标对象实现的一组接口。
InvocationHandler h表示当前的InvocationHandler实现实例对象。

代理模式Proxy

标签:color   new   pre   public   col   ted   row   客户   bundle   

原文地址:https://www.cnblogs.com/Ocean123123/p/11023641.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!