jdk动态代理生成对象

package com.dq;

import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;

public class TestMain 
{
     
	public static void main(String[] args) 
	{
     
		// 代理类的处理器
		InvocationHandler handler = new InvocationHandler() {
     
			@Override
			public Object invoke(Object proxy, Method method, Object[] args)
					throws Throwable 
			{
     
				System.out.println("方法:" + method.getName());
				System.out.println("这里是代理类的处理器");
				return null;
			}
		};
		IClient proxyObj = (IClient)Proxy.newProxyInstance(IClient.class.getClassLoader(), new Class[]{
     IClient.class}, handler);
		proxyObj.method1(null);
	}
}

interface IClient	// 接口,根据这个接口动态生成代理对象
{
     
	void method1(String msg);
}

你可能感兴趣的:(java)