📜  如何在 java 代码示例中使用带有 if 语句的字符串变量

📅  最后修改于: 2022-03-11 14:52:38.491000             🧑  作者: Mango

代码示例2
String a = "Hello"

if (a.equals("Hello") {
    System.out.println("Variable A is Hello");
} else {
    System.out.println("Variable A is not hello :(");
}