Home > Java > javaTutorial > body text

Analyze the code of Java dynamic proxy instance

WBOY
Release: 2023-04-25 16:16:07
forward
823 people have browsed it

Instructions

1. Use a proxy to wrap the object, and then use the proxy object to replace the original object.

2. Any call to the original object must go through the proxy. The proxy object determines if and when method calls are directed to the original object.

Example

public static void main(String[] args) {
    Roommate roommate = new Roommate("zhangsan");
        Hungry proxyInstance = (Hungry) Proxy.newProxyInstance(
                roommate.getClass().getClassLoader(),
                roommate.getClass().getInterfaces(),
                new RoommateInvocationHandler<Roommate>(roommate)
        );
        proxyInstance.callLunch();
}
//输出结果
下单前,我先帮你看下有没有平台优惠券吧
好饿,今天午饭点外卖吧
Copy after login

The above is the detailed content of Analyze the code of Java dynamic proxy instance. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:yisu.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!