Ruby 中的字符串是可变的吗?
Ruby 中的字符串是可变的吗?根据文档,
str = "hello"
str = str + " world"
创建一个具有值的新字符串对象"hello world"
但当我们这样做时,
str = "hello"
str << " world"
它并没有提到它创建了一个新对象,因此它会改变 str
对象,该对象现在的值为 “你好世界”?
Are Strings mutable in Ruby? According to the documentation doing
str = "hello"
str = str + " world"
creates a new string object with the value "hello world"
but when we do
str = "hello"
str << " world"
It does not mention that it creates a new object, so does it mutate the str
object, which will now have the value "hello world"
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,
<<
改变同一个对象,而+
创建一个新对象。示范:Yes,
<<
mutates the same object, and+
creates a new one. Demonstration:作为补充,这种可变性的一个含义如下:
因此
,您应该明智地选择对字符串使用的方法,以避免出现意外行为。
另外,如果您希望在整个应用程序中具有不可变且独特的东西,您应该使用符号:
Just to complement, one implication of this mutability is seem below:
and
So, you should choose wisely the methods you use with strings in order to avoid unexpected behavior.
Also, if you want something immutable and unique throughout your application you should go with symbols:
虽然上面的答案很完美,但只是为未来的读者添加这个答案。
While above answers are perfect, Just adding this answer for future readers.