如何检查变量是否为空?

时间:2018-01-24 08:18:53

标签: java if-statement null

我知道这不起作用,但我怎么知道用户是否添加了一个字符?

public class Program
import java.util.Scanner;
{
public static void main(String[] args) {
    Scanner a = new Scanner(System.in);
    String b = a.nextLine();

//I know this doesnt work but how can I know if the user added even one char?
    if (b!=null){
    System.out.println(b);
}
}
}

2 个答案:

答案 0 :(得分:2)

您可以使用.equals("").isEmpty()

检查check if the variable is null

答案 1 :(得分:0)

你可以这样做

if (!b.isEmpty()) {
  System.out.println(b);
}