Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
317 views
in Technique[技术] by (71.8m points)

Why does string interpolation work in Ruby when there are no curly braces?

The proper way to use string interpolation in Ruby is as follows:

name = "Ned Stark"
puts "Hello there, #{name}" #=> "Hello there, Ned Stark"

That is the way I intend to always use it.

However, I've noticed something odd in Ruby's string interpolation. I've noticed that string interpolation works in Ruby without the curly braces in regards to instance variables. For example:

@name = "Ned Stark"
puts "Hello there, #@name" #=> "Hello there, Ned Stark"

And that trying the same thing as a non-instance variable does not work.

name = "Ned Stark"
puts "Hello, there, #name" #=> "Hello there, #name"

I've tried this with success in both 1.9.2 and 1.8.7.

Why does this work? What is the interpreter doing here?

Question&Answers:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

According to The Ruby Programming Language by Flanagan and Matsumoto:

When the expression to be interpolated into the string literal is simply a reference to a global, instance or class variable, then the curly braces may be omitted.

So the following should all work:

@var = "Hi"
puts "#@var there!"  #=> "Hi there!"

@@var = "Hi"
puts "#@@var there!" #=> "Hi there!"

$var = "Hi"
puts "#$var there!"  #=> "Hi there!"

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...