本文介绍了为什么是Class.newInstance()" evil"?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

询问在注释#3到的回答:

Ryan Delucchi asked here in comment #3 to Tom Hawtin's answer:

此回应代码示例:

// Avoid Class.newInstance, for it is evil.
Constructor<? extends Runnable> ctor = runClass.getConstructor();
Runnable doRun = ctor.newInstance();

那么,为什么是Evil?

so, why is it Evil?

推荐答案

Java API文档解释了为什么():

The Java API documentation explains why (http://java.sun.com/javase/6/docs/api/java/lang/Class.html#newInstance()):

换句话说,它可以取消检查的异常系统。

In other words, it can defeat the checked exceptions system.

这篇关于为什么是Class.newInstance()&quot; evil&quot;?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-15 08:50