I tried the following but could not get any answer to comparing 2 String. How can I compare b and x and get 'true'?
import java.io.*;
class Test {
public static void main(String[] args) {
// String a = "abc";
String b = new String("abc");
// System.out.printf("a == b -> %b\n", (a == b));
// System.out.printf("a.equals(b) -> %b\n", a.equals(b));
char[] x = new char[4];
x[0] = 'a'; x[1] = 'b'; x[2] = 'c'; x[3] = 0;
String s = new String(x);
System.out.printf("x = %s\n", s);
System.out.printf("b == s -> %b\n", b == s);
System.out.printf("b.equals(s) -> %b\n", b.equals(s));
System.out.printf("b.compareTo(s) -> %d\n", b.compareTo(s));
}
}
x = abc
b == s -> false
b.equals(s) -> false
b.compareTo(s) -> -1