定义单引号或者双引号String a = 'abc';String b = "abc";字符串模板var a = 123;String b = 'abc: ${a}';print(b);//abc:123字符串连接下面几种方式 ...
確定! 回上一頁