标签: java string
a'和a“?或者介于”和“之间?”
//我无法让程序输出\“。
答案 0 :(得分:2)
如果我理解你的问题,你需要逃避\。像,
\
System.out.println("a ' and a \"? Or between a \" and a \\\"?");
输出(按要求)
a ' and a "? Or between a " and a \"?
答案 1 :(得分:0)
您可以通过转义输出反斜杠:
System.out.println("\\");