“Sprawdź, czy ciąg jest pustą Java” Kod odpowiedzi

Sprawdź, czy ciąg jest pustą Java

if (myString == null || myString.equals(""))
			throw new IllegalArgumentException("empty string");
ExceptionThrower

Jak sprawdzić NULL i pusty ciąg w Javie

if(str != null && !str.isEmpty())
Be sure to use the parts of && in this order, because java will not proceed to evaluate the second part if the first part of && fails, thus ensuring you will not get a null pointer exception from str.isEmpty() if str is null.
Santino

Odpowiedzi podobne do “Sprawdź, czy ciąg jest pustą Java”

Pytania podobne do “Sprawdź, czy ciąg jest pustą Java”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu