Linguaggio

OutOfMemoryError Costruttori

Definizione

Overload

Nome Descrizione
OutOfMemoryError()

Costruisce un oggetto OutOfMemoryError senza messaggio di dettaglio.

OutOfMemoryError(String)

Costruisce un oggetto OutOfMemoryError con il messaggio di dettaglio specificato.

OutOfMemoryError(IntPtr, JniHandleOwnership)

Costruttore usato durante la creazione di rappresentazioni gestite di oggetti JNI; chiamato dal runtime.

OutOfMemoryError()

Costruisce un oggetto OutOfMemoryError senza messaggio di dettaglio.

[Android.Runtime.Register(".ctor", "()V", "")]
public OutOfMemoryError();
Attributi

Commenti

Costruisce un oggetto OutOfMemoryError senza messaggio di dettaglio.

per java.lang.OutOfMemoryError.OutOfMemoryError().

Le parti di questa pagina sono modifiche basate sul lavoro creato e condiviso dalla e usati in base ai termini descritti in Creative License 2.5 Attribution License.

Si applica a

OutOfMemoryError(String)

Costruisce un oggetto OutOfMemoryError con il messaggio di dettaglio specificato.

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

Parametri

s
String

messaggio di dettaglio.

Attributi

Commenti

Costruisce un oggetto OutOfMemoryError con il messaggio di dettaglio specificato.

per java.lang.OutOfMemoryError.OutOfMemoryError(java.lang.String).

Le parti di questa pagina sono modifiche basate sul lavoro creato e condiviso dalla e usati in base ai termini descritti in Creative License 2.5 Attribution License.

Si applica a

OutOfMemoryError(IntPtr, JniHandleOwnership)

Costruttore usato durante la creazione di rappresentazioni gestite di oggetti JNI; chiamato dal runtime.

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

Parametri

javaReference
IntPtr

nativeint

Oggetto IntPtrcontenente un riferimento all'oggetto JNI (Native Interface) Java.

transfer
JniHandleOwnership

Oggetto JniHandleOwnershipche indica come gestire javaReference

Commenti

Le parti di questa pagina sono modifiche basate sul lavoro creato e condiviso dalla e usati in base ai termini descritti in Creative License 2.5 Attribution License.

Si applica a