标签:抽象 映射 views row 对象 sys void rgs details
public class Test { public static void main(String[] args) { System.out.println("第一种实例化:"); System.out.println(int.class); System.out.println(Integer.TYPE); System.out.println("第二种实例化:"); Test test = new Test(); System.out.println(test.getClass().getName()); System.out.println(test.getClass().getSimpleName()); } }
newInstance
public T newInstance() throws InstantiationException, IllegalAccessException
new
表达式实例化该类。IllegalAccessException
- 如果该类或其 无参 构造方法是不可访问的。InstantiationException
- 如果此Class
表示一个抽象类、接口、数组类、基本类型或 void; 或者该类没有无参构造方法。标签:抽象 映射 views row 对象 sys void rgs details
原文地址:http://www.cnblogs.com/zhaideyou/p/6005854.html