Java Character.equals(Object obj)
Syntax
Character.equals(Object obj) has the following syntax.
public boolean equals(Object obj)
Example
In the following code shows how to use Character.equals(Object obj) method.
public class Main {
public static void main(String[] args) {
Character c1 = new Character('a');
Character c2 = new Character('a');
/* w w w . j a v a 2s. com*/
String str1 = "Equal ";
if (c1.equals(c2) ) {
System.out.println(str1);
}
}
}
The code above generates the following result.