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");
}
character comparison java
public static void compareCharacters(char c1,char c2){
int cmp=Character.compare(c1,c2);
if(cmp>0){
System.out.println(c1+">"+c2);
}else if(cmp<0){
System.out.println(c1+"<"+c2);
}else{
System.out.println(c1+"="+c2);
}
}
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