check if char equals java
//Method 1
if (CHAR == VALUE) {
System.out.println("CHAR matches with VALUE");
}
//Method 2
if (CHAR.equals(VALUE)) {
System.out.println("CHAR matches with VALUE");
}
check if char equals java
//Method 1
if (CHAR == VALUE) {
System.out.println("CHAR matches with VALUE");
}
//Method 2
if (CHAR.equals(VALUE)) {
System.out.println("CHAR matches with VALUE");
}
check if two characters are equal java
if('a' == 'a') should be True since both characters are equal
if('A' == 'a') should be False since the ASCII code of the characters are not equal
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us