Please try compiling the sample program below:-
public class Test2 {
public void check() {
// works fine
String str1 = "\n";
// leads to compilation failure
String str2 = "\u000A";
}
public static void main(String args[]) {
Test2 ref = new Test2();
ref.check();
}
}
public class Test2 {
public void check() {
// works fine
String str1 = "\n";
// leads to compilation failure
String str2 = "\u000A";
}
public static void main(String args[]) {
Test2 ref = new Test2();
ref.check();
}
}