摘要: C#下面的Delegate可以让方法传递方法,在Java下却没有类似的机制。如何在Java下面模拟出Delegate呢?使用反射试试。贴代码:/** author:licunqing */import java.lang.reflect.InvocationTargetException;import java.lang.reflect.Method;public class Delegate { private Class c=null; private String method=null; private Class[] paramsType=null; priv... 阅读全文
posted @ 2013-02-28 09:38 cacard 阅读(5657) 评论(0) 推荐(1) 编辑