1.转义符定义:
特殊字符使用”\”把其转化成字符的本身输出,
那么使用”\”的字符称作为转移字符特殊字符使用”\”把其转化成字符的本身输出,
那么使用”\”的字符称作为转移字符
2.转义符的分类:
\b Backspace (退格键) 退格的意思: "hello\bworld" = hellworld
\t Tab (Tab键盘) 真正的意思是一列对齐的方式 "hello\tworld" = hello world
\n Linefeed (换行) 换行: "hello\nworld" = hello world
\r Carriage Return(回车) 回车:(真正的意思是将光标挪到一行的首位) "hello\rworld" = world
\\ Backslash (反斜杠) 反斜杠:格式化输出"\" "hello\\world" = hello\world
\' Single Quote (单引号) 格式化输出: "hello\'worold" = hello'world
\" Double Quote (双引号) 格式化输出: "hello\"world" = hello"world