Most visited

Recently visited

Added in API level 1

ArrayStoreException

public class ArrayStoreException
extends RuntimeException

java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ java.lang.ArrayStoreException


抛出以表示尝试将错误类型的对象存储到对象数组中。 例如,以下代码会生成一个ArrayStoreException

     Object x[] = new String[3];
     x[0] = new Integer(0);
 

Summary

Public constructors

ArrayStoreException()

构造一个没有详细信息的 ArrayStoreException

ArrayStoreException(String s)

用指定的详细信息构造一个 ArrayStoreException

Inherited methods

From class java.lang.Throwable
From class java.lang.Object

Public constructors

ArrayStoreException

Added in API level 1
ArrayStoreException ()

构造一个没有详细信息的 ArrayStoreException

ArrayStoreException

Added in API level 1
ArrayStoreException (String s)

用指定的详细信息构造一个 ArrayStoreException

Parameters
s String: the detail message.

Hooray!