JAVA9之后废弃newInstance()方法
Posted wenqiangit
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA9之后废弃newInstance()方法相关的知识,希望对你有一定的参考价值。
JAVA9之后废弃newInstance()方法
根据JAVA11的API 我们可以看见反射中的newInstance()方法不推荐使用了,用
clazz.getDeclaredConstructor().newInstance()
代替
例如
package reflect;
import java.lang.reflect.InvocationTargetException;
/**
* 获取class对象的几种方法
* 对象.get.class
* 类 class
* Class.forName(全限定类名)
*
*/
public class Demo
public static void main(String[] args) throws InstantiationException, IllegalAccessException, IllegalArgumentException, InvocationTargetException, NoSuchMethodException, SecurityException
String string="abc";
Class<?> class1=string.getClass();
class1=String.class;
try
class1=Class.forName("java.lang.String");
catch (ClassNotFoundException e)
// TODO Auto-generated catch block
e.printStackTrace();
System.out.println((String)class1.getDeclaredConstructor().newInstance());
以上是关于JAVA9之后废弃newInstance()方法的主要内容,如果未能解决你的问题,请参考以下文章