为什么定义字符串为"\natural"不会报错,而定义为"\hello"会报错?
"\natural" \n解析为换行 "\hello" \h没有对应转义,错误。
他只是把你\n当成了换行符,需要''字符串,需要进行转义符\
"\\nature"