「Java11」null文字列か判定するサンプル
環境
java 11
Eclipse 4.14.0
書式
対象文字列.length()
対象文字列がnull文字列か判定します。
使用例
public static boolean isNull(String str){ return ( (str == null) || (str.length() == 0) ); }
Coding Changes the World
環境
java 11
Eclipse 4.14.0
書式
対象文字列.length()
対象文字列がnull文字列か判定します。
使用例
public static boolean isNull(String str){ return ( (str == null) || (str.length() == 0) ); }