admin 管理员组

文章数量: 1184232

“({0} = ‘’{1}’’)”


双引号不能嵌套双引号,否则一对双引号就结束了。
java中双引号中嵌套双引号需要转义:

packagestrings;publicclassTest{publicstaticvoidmain(String[] args){String ont ="\"name\"";//字符串两边含有双引号String tow ="name \"is\" wgb";//字符串中间含有双引号String three ="\\name";//使用转义字符还可以使字符串包含其他字符System.out.println("字符串ont  :"+ ont);System.out.println("字符串tow  :"+ tow);System.out.println("字符串three:"+ three);System.out.println("''{s}''");}}

本文标签: 引号 编程 双引号里