String(1.1) == (1.1).to_s => true
String(1.1) === (1.1).to_s => true
Is there a difference between these two coercion methods? If so, can you demonstrate?
Is there a difference between these two coercion methods? If so, can you demonstrate? |
|||
|
|
|
The docs for the
So generally they are the same, but there are some differences – although you’re unlikely to see them for real. Consider the class:
An instance of
You’re unlikely ever to need to override |
||||
|
|
|
They raise different exceptions when they fail:
|
|||
|
|
|
We always use .to_s where we want to cast an object to String.
*update: almost same discussion here: ruby to_s vs to_str |
||||