NullPointerException Constructores
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
| Nombre | Description |
|---|---|
| NullPointerException() |
Construye un objeto |
| NullPointerException(String) |
Construye un |
| NullPointerException(IntPtr, JniHandleOwnership) |
Constructor utilizado al crear representaciones administradas de objetos JNI; llamado por el tiempo de ejecución. |
NullPointerException()
Construye un objeto NullPointerException sin mensaje de detalle.
[Android.Runtime.Register(".ctor", "()V", "")]
public NullPointerException();
- Atributos
Comentarios
Construye un objeto NullPointerException sin mensaje de detalle.
Java documentación para java.lang.NullPointerException.NullPointerException().
Las partes de esta página son modificaciones basadas en el trabajo creado y compartido por el Android y se usan según los términos descritos en creative Creative Commons 2.5 Attribution License.
Se aplica a
NullPointerException(String)
Construye un NullPointerException objeto con el mensaje de detalle especificado.
[Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")]
public NullPointerException(string? s);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")>]
new Java.Lang.NullPointerException : string -> Java.Lang.NullPointerException
Parámetros
- s
- String
mensaje de detalle.
- Atributos
Comentarios
Construye un NullPointerException objeto con el mensaje de detalle especificado.
Java documentación para java.lang.NullPointerException.NullPointerException(java.lang.String).
Las partes de esta página son modificaciones basadas en el trabajo creado y compartido por el Android y se usan según los términos descritos en creative Creative Commons 2.5 Attribution License.
Se aplica a
NullPointerException(IntPtr, JniHandleOwnership)
Constructor utilizado al crear representaciones administradas de objetos JNI; llamado por el tiempo de ejecución.
protected NullPointerException(IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Lang.NullPointerException : nativeint * Android.Runtime.JniHandleOwnership -> Java.Lang.NullPointerException
Parámetros
- javaReference
-
IntPtr
nativeint
que IntPtrcontiene una referencia de objeto Java Native Interface (JNI).
- transfer
- JniHandleOwnership
un JniHandleOwnershipvalor de tipo que indica cómo controlar javaReference
Comentarios
Las partes de esta página son modificaciones basadas en el trabajo creado y compartido por el Android y se usan según los términos descritos en creative Creative Commons 2.5 Attribution License.