可能重複:
How do I make a string with a " character in it? (Java)打印「在Java字符串
我無法打印字符串,這樣在java中System.out.println("this is a "test"");
我怎麼能去這
可能重複:
How do I make a string with a " character in it? (Java)打印「在Java字符串
我無法打印字符串,這樣在java中System.out.println("this is a "test"");
我怎麼能去這
這就是你要找的東西:
System.out.println("this is a \"test\"");
\
被稱爲轉義字符。
它用於將特殊字符嵌入到String
文字中。
\n
=換行符
\t
=標籤
\f
=形式飼料
\r
=回車
\"
=雙引號
\\
=反斜槓
這只是您可以使用轉義序列插入的特殊字符中的一部分。
您在Java中使用特殊字符的方式是使用\
。例如。這("\\"
)是你如何返回\
而這("\""
)是你如何返回"
。
這是你會如何實現你的例子:
System.out.println("this is a \"test\"");
逃脫報價
System.out.println("this is a \"test\"");
必須跳出「人物中的Java
System.out.println("this is a \"test\"");
我不知道一樣,你告訴我 – Dimme 2012-01-03 23:11:15
你去了:) – 2012-01-03 23:15:21
它被低估了,因爲在編輯之前這個答案是錯的。 – yurib 2012-01-03 23:20:17