大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
这篇文章主要讲解了Java Method类及invoke方法的用法,内容清晰明了,对此有兴趣的小伙伴可以学习一下,相信大家阅读完之后会有帮助。
创新互联服务项目包括孟津网站建设、孟津网站制作、孟津网页制作以及孟津网络营销策划等。多年来,我们专注于互联网行业,利用自身积累的技术优势、行业经验、深度合作伙伴关系等,向广大中小型企业、政府机构等提供互联网行业的解决方案,孟津网站推广取得了明显的社会效益与经济效益。目前,我们服务的客户以成都为中心已经辐射到孟津省份的部分城市,未来相信会继续扩大服务区域并继续获得客户的支持与信任!在说Method和invoke的使用之前我们来看一个小例子, 如果看懂了那就ok了
public class MethodInvoke { class Animal { public void print() { System.out.println("Animal.print()"); } } class Cat extends Animal { @Override public void print() { System.out.println("Cat.print()"); } } public static void main(String[] args) throws Exception { Method animalMethod = Animal.class.getDeclaredMethod("print"); Method catMethod = Cat.class.getDeclaredMethod("print"); Animal animal = new Animal(); Cat cat = new Cat(); animalMethod.invoke(cat); //相当于 cat调用父类的print方法 animalMethod.invoke(animal);//相当于 animal.print(); catMethod.invoke(cat); //相当于 cat.print(); catMethod.invoke(animal); } }