언어

ArrayIndexOutOfBoundsException 생성자

정의

오버로드

속성 Description
ArrayIndexOutOfBoundsException()

세부 메시지 없이 생성 ArrayIndexOutOfBoundsException 합니다.

ArrayIndexOutOfBoundsException(Int32)

잘못된 인덱스를 나타내는 인수를 사용하여 새 ArrayIndexOutOfBoundsException 클래스를 생성합니다.

ArrayIndexOutOfBoundsException(String)

지정된 세부 정보 메시지를 사용하여 ArrayIndexOutOfBoundsException 클래스를 생성합니다.

ArrayIndexOutOfBoundsException(IntPtr, JniHandleOwnership)

JNI 개체의 관리되는 표현을 만들 때 사용되는 생성자입니다. 런타임에서 호출합니다.

ArrayIndexOutOfBoundsException()

세부 메시지 없이 생성 ArrayIndexOutOfBoundsException 합니다.

[Android.Runtime.Register(".ctor", "()V", "")]
public ArrayIndexOutOfBoundsException();
특성

설명

세부 메시지 없이 생성 ArrayIndexOutOfBoundsException 합니다.

에 대한 java.lang.ArrayIndexOutOfBoundsException.ArrayIndexOutOfBoundsException()Java 설명서

이 페이지의 일부는 만들고 공유한 작업을 기반으로 하며 에 설명된 조건에 따라 사용됩니다.

적용 대상

ArrayIndexOutOfBoundsException(Int32)

잘못된 인덱스를 나타내는 인수를 사용하여 새 ArrayIndexOutOfBoundsException 클래스를 생성합니다.

[Android.Runtime.Register(".ctor", "(I)V", "")]
public ArrayIndexOutOfBoundsException(int index);
[<Android.Runtime.Register(".ctor", "(I)V", "")>]
new Java.Lang.ArrayIndexOutOfBoundsException : int -> Java.Lang.ArrayIndexOutOfBoundsException

매개 변수

index
Int32

잘못된 인덱스입니다.

특성

설명

잘못된 인덱스를 나타내는 인수를 사용하여 새 ArrayIndexOutOfBoundsException 클래스를 생성합니다.

인덱스는 이 예외의 세부 정보 메시지에 포함됩니다. 세부 정보 메시지의 정확한 프레젠테이션 형식은 지정되지 않았습니다.

에 대한 java.lang.ArrayIndexOutOfBoundsException.ArrayIndexOutOfBoundsException(int)Java 설명서

이 페이지의 일부는 만들고 공유한 작업을 기반으로 하며 에 설명된 조건에 따라 사용됩니다.

적용 대상

ArrayIndexOutOfBoundsException(String)

지정된 세부 정보 메시지를 사용하여 ArrayIndexOutOfBoundsException 클래스를 생성합니다.

[Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")]
public ArrayIndexOutOfBoundsException(string? s);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")>]
new Java.Lang.ArrayIndexOutOfBoundsException : string -> Java.Lang.ArrayIndexOutOfBoundsException

매개 변수

s
String

세부 정보 메시지입니다.

특성

설명

지정된 세부 정보 메시지를 사용하여 ArrayIndexOutOfBoundsException 클래스를 생성합니다.

에 대한 java.lang.ArrayIndexOutOfBoundsException.ArrayIndexOutOfBoundsException(java.lang.String)Java 설명서

이 페이지의 일부는 만들고 공유한 작업을 기반으로 하며 에 설명된 조건에 따라 사용됩니다.

적용 대상

ArrayIndexOutOfBoundsException(IntPtr, JniHandleOwnership)

JNI 개체의 관리되는 표현을 만들 때 사용되는 생성자입니다. 런타임에서 호출합니다.

protected ArrayIndexOutOfBoundsException(IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Lang.ArrayIndexOutOfBoundsException : nativeint * Android.Runtime.JniHandleOwnership -> Java.Lang.ArrayIndexOutOfBoundsException

매개 변수

javaReference
IntPtr

nativeint

IntPtrJava JNI(Native Interface) 개체 참조를 포함하는 개체입니다.

transfer
JniHandleOwnership

JniHandleOwnership처리 방법을 나타내는 AjavaReference

설명

이 페이지의 일부는 만들고 공유한 작업을 기반으로 하며 에 설명된 조건에 따라 사용됩니다.

적용 대상