I want to check it the first input argument is operator "+"
below is the code
if (args[0] == "+") {
System.out.println("good");
} else {
System.out.println("invalid expression");
}
but it always return false. something wrong with the code?