java中的让字符串跨行符号是什么?
5个回答
展开全部
你说的意思:
.net中:
string query = @"SELECT foo, bar
FROM table
WHERE id = 42";
php中
<?php
$str = <<<'EOD'
Example of string
spanning multiple lines
using nowdoc syntax.
EOD;
echo <<<'EOT'
My name is "$name". I am printing some $foo->foo.
Now, I am printing some {$foo->bar[1]}.
This should not print a capital 'A': \x41
EOT;
?>
这种跨行书写,不用在每句话的后面添加+
groovy:
assert '''hello,
world''' == 'hello,\nworld'
//triple-quotes for multi-line strings, adds '\n' regardless of host system
assert 'hello, \
world' == 'hello, world' //backslash joins lines within string
java中有没有?没有
展开全部
在.net中,这表示:编译器,你注意了哈,我后面就是这样的格式,没有特殊字符,你就得原原本本地给我这么写,不需要你做改动了,它就长这样。
而java中,@没有这个作用。没有说一个字符把整句话都转义的字符,只能一个一个转义,就是 斜杆(\)
而java中,@没有这个作用。没有说一个字符把整句话都转义的字符,只能一个一个转义,就是 斜杆(\)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
java没有跨行符,可以这样写:
String str = "abc" +
"cde";
String str = "abc" +
"cde";
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
换行是 \n
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询