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

Java类信息作为函数参数

时间:2020-06-20 13:14:08      阅读:55      评论:0      收藏:0      [点我收藏+]

标签:out   sse   lang   access   test   uri   rgs   getname   new   

import java.lang.reflect.InvocationTargetException;

interface IA{
  void fun();
}

class C implements IA{
  public void fun() {
    System.out.println("fun in C");
  }
}

class D implements IA{
  public void fun() {
    System.out.println("fun in D");
  }
}

class B{
  public void fun(Class<?> ia) throws InstantiationException, IllegalAccessException, IllegalArgumentException, InvocationTargetException,     NoSuchMethodException, SecurityException {
    System.out.println(ia.getName());
    IA exp=(IA) ia.getDeclaredConstructor().newInstance(); //根据反射机制实例化
    exp.fun(); //多态
  }
}

public class test {
  public static void main(String[] args) throws InstantiationException, IllegalAccessException, IllegalArgumentException, InvocationTargetException, NoSuchMethodException, SecurityException {
    B myB=new B();
    myB.fun(D.class);
    System.out.println("normal running.");
  }
}

Java类信息作为函数参数

标签:out   sse   lang   access   test   uri   rgs   getname   new   

原文地址:https://www.cnblogs.com/szcloud/p/13168022.html

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