码迷,mamicode.com
首页 > 编程语言 > 详细

java高级篇

时间:2017-10-27 01:19:21      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:sed   hid   定义   splay   static   exception   except   高级   str   

---恢复内容开始---

Method对象可以得到任何一个类的任何方法的定义(只需要传入方法的名字和参数即可)

技术分享
class Ming {
    private void speak() {
        System.out.println("ff");
    }
}

public class Main {
    public static void main(String[] args) throws NoSuchMethodException {
        Method method = Ming.class.getDeclaredMethod("speak");
        System.out.println(method.toString());
    }
}
View Code

有参数的话,需要int.class

技术分享
class Ming {
    void speak(int a) {
        System.out.println("ff");
    }
}

public class Main {
    public static void main(String[] args) throws NoSuchMethodException {
        Ming s = new Ming();
        Method method = s.getClass().getDeclaredMethod("speak", int.class);
        System.out.println(method);
    }
}
View Code

 

但是得到构造函数的话,是不行的,需要用Constructor对象

---恢复内容结束---

java高级篇

标签:sed   hid   定义   splay   static   exception   except   高级   str   

原文地址:http://www.cnblogs.com/liuweimingcprogram/p/7739943.html

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