我正在寻找键入“\”字符的正确方法,这样我就不会收到“非法转义字符”错误
美好的一天,最近我开始使用 Java,参加在线基础课程,在我的一个练习代码中,我意识到我的键盘类型“\”实际上不是正确的转义字符,因此我的代码运行“字符串中的非法转义字符”文字”错误。关于如何正确输入或如何用正确的字符替换系统中的字符有什么建议吗?这是带有不正确字符的代码:
public class WellFormed {
public static void main(String[] arga) {
System.out.println("A well-formed Java program has");
System.out.println("a main method with \{ and \}");
System.out.println("braces.");
System.out.println();
System.out.println("A System.out.println statement");
System.out.println("has \( and \) and usually a");
System.out.println("String that starts and ends");
System.out.println("with a \" character");
System.out.println("\(but we type \\" instead!");
}
}
拉莫斯之舞
繁星淼淼
白衣染霜花
相关分类