- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.ArrayStoreException
-
- All Implemented Interfaces:
-
Serializable
public class ArrayStoreException extends RuntimeException
抛出以表示尝试将错误类型的对象存储到对象数组中。 例如,以下代码生成一个ArrayStoreException
:Object x[] = new String[3]; x[0] = new Integer(0);
- 从以下版本开始:
- 1.0
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 ArrayStoreException()
构造一个ArrayStoreException
,没有详细消息。ArrayStoreException(String s)
构造具有指定详细消息的ArrayStoreException
。
-
方法摘要
-
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
-
-
-
-
构造方法详细信息
-
ArrayStoreException
public ArrayStoreException()
构造一个没有详细消息的ArrayStoreException
。
-
ArrayStoreException
public ArrayStoreException(String s)
构造具有指定详细消息的ArrayStoreException
。- 参数
-
s
- 详细信息。
-
-