我想让自己熟悉ruby语法和编码样式(我是新手)。我遇到了一个使用<<-
的代码,这在Ruby中意味着什么?代码是
def expectation_message(expectation)
<<-FE
#{expectation.message}
#{expectation.stack}
FE
end
这只是整个代码的一部分。任何帮助将不胜感激。
答案 0 :(得分:12)
在Ruby中有多种方法可以定义多行字符串。这是其中之一。
> name = 'John'
> city = 'Ny'
> multiline_string = <<-EOS
> This is the first line
> My name is #{name}.
> My city is #{city} city.
> EOS
=> "This is the first line\nMy name is John.\nMy city is Ny city.\n"
>
上面示例中的EOS
只是一个约定,您可以使用您喜欢的任何字符串及其不区分大小写。通常,EOS
表示End Of String
此外,甚至不需要-
(破折号)。但是,允许您缩进“此处doc结束”分隔符。请参阅以下示例以了解句子。
2.2.1 :014 > <<EOF
2.2.1 :015"> My first line without dash
2.2.1 :016"> EOF
2.2.1 :017"> EOF
=> "My first line without dash\n EOF\n"
2.2.1 :018 > <<-EOF
2.2.1 :019"> My first line with dash. This even supports spaces before the ending delimiter.
2.2.1 :020"> EOF
=> "My first line with dash. This even supports spaces before the ending delimiter.\n"
2.2.1 :021 >
了解更多信息,请参阅 https://cbabhusal.wordpress.com/2015/10/06/ruby-multiline-string-definition/
答案 1 :(得分:4)
<<FE
(您可以用另一个词替换FE)用于创建多行字符串。 <<-FE
用于在删除结束标记之前使用空格创建多行字符串。