- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.ReflectiveOperationException
-
- java.lang.InstantiationException
-
- All Implemented Interfaces:
-
Serializable
public class InstantiationException extends ReflectiveOperationException
当应用程序试图创建使用一个类的实例抛出newInstance
方法在类Class
,而指定的类对象不能被实例化。 实例化可能由于各种原因而失败,包括但不限于:- 类对象表示抽象类,接口,数组类,基元类型,或
void
- 该类没有空值构造函数
- 从以下版本开始:
- 1.0
- 另请参见:
-
Class.newInstance()
, Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 InstantiationException()
构造一个InstantiationException
,没有详细信息。InstantiationException(String s)
构造具有指定详细消息的InstantiationException
。
-
方法摘要
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
InstantiationException
public InstantiationException()
构造一个InstantiationException
,没有详细信息。
-
InstantiationException
public InstantiationException(String s)
构造具有指定详细消息的InstantiationException
。- 参数
-
s
- 详细信息。
-
-