Following code fails
world = :world
result = 'hello' + world
puts result #=> can't convert Symbol into String
Following code works
world = :world
result = "hello #{world}"
puts result #=> hello world
Why?
Using ruby 1.8.7
|
Following code fails
Following code works
Why? Using ruby 1.8.7 |
||||
|
String interpolation is an implicit
is more or less equivalent to this:
As karim79 said, a symbol is not a string but symbols do have |
|||||||||
|
|
The same behaviour would occur if
If you want to add a string to something, implement
|
|||||||||
|
|
A symbol is not a string, and as such it cannot be concatenated to one without explicit conversion. Try this:
|
|||
|
|
|
As a side note, you can always define the method yourself :)
|
|||||
|
'1'+1=='11'problem.) Ruby is dynamically-typed but strongly-typed, meaning that (with few exceptions) you need to perform conversions explicitly. – Phrogz Dec 6 '10 at 4:22