import java.lang.reflect.Method;public class T4 {public static void ShowObject(Object o) {System.out.println(o.getClass().getName());Method ms[] = o.getClass().getMethods();// 类名for (Method m : ms) {System.out.println(m);// 方法}}public static void main(String[] args) {// 参数为对象实例,同样也可以传入自定义类// 此处简单打印两个ShowObject(new Object());ShowObject(new String(""));}}
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
import java.lang.reflect.Method;
public class T4 {
public static void ShowObject(Object o) {
System.out.println(o.getClass().getName());
Method ms[] = o.getClass().getMethods();// 类名
for (Method m : ms) {
System.out.println(m);// 方法
}
}
public static void main(String[] args) {
// 参数为对象实例,同样也可以传入自定义类
// 此处简单打印两个
ShowObject(new Object());
ShowObject(new String(""));
}
}