ページの作成:「(String).isEmpty [https://docs.oracle.com/javase/jp/8/docs/api/java/lang/String.html#isEmpty--]<br> public boolean isEmpty() 空文字か調べます。length()が0…」
 
編集の要約なし
 
(同じ利用者による、間の7版が非表示)
1行目: 1行目:
([[String]]).isEmpty [https://docs.oracle.com/javase/jp/8/docs/api/java/lang/String.html#isEmpty--]<br>
"[[String]]".isEmpty [https://docs.oracle.com/javase/jp/8/docs/api/java/lang/String.html#isEmpty--]
public boolean isEmpty()


空文字か調べます。length()が0の場合にのみ true を返します。
空文字か真偽します。length()が0の場合にのみtrueを返します。


  if (input.isEmpty()) {
  if (s1.isEmpty()) {
     System.out.println("Please type something...");
     System.out.println("true");
  }
  }

2019年6月9日 (日) 14:58時点における最新版

"String".isEmpty [1]

空文字か真偽します。length()が0の場合にのみtrueを返します。

if (s1.isEmpty()) {
    System.out.println("true");
}