Agradeceríamos tu ayuda para compartir nuestros tutoriales con relación a las ciencias de la computación.
Ejemplo 1: comprobar si string es null o java vacío
if(str !=null&&!str.isEmpty())/* do your stuffs here */
Ejemplo 2: Java comprueba si int es null
Anint is not null, it may be 0if not initialized.
If you want an integer tobe able tobenull, you need touseInteger instead of int.
Integer id;String name;publicIntegergetId()return id;Besides the statement if(person.equals(null)) can't be true, because if person is null, then a NullPointerException will be thrown. So the correct expression is if(person ==null)
Al final de todo puedes encontrar las ilustraciones de otros usuarios, tú igualmente puedes dejar el tuyo si te gusta.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)