**已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
昨天关门了。
Improve this question
如何在java中使用转义字符“"打印图形?System.out.println(“\“);等等。
Source Code
2条答案
按热度按时间zkure5ic1#
您可以使用第二个
\
(如\\
)转义\
,并且(如果使用Java 13+)可以使用triple quotes。产出
h79rfbju2#
\
是一个转义字符。要打印文字字符,您需要转义它本身。将每个\
替换为\\
,它就可以工作了。