我在Ruby中看到很多这样的事情:
myString = "Hello " << "there!"
这与做什么有所不同
myString = "Hello " + "there!"
解决方法
在Ruby中,字符串是可变的.也就是说,一个字符串值实际上可以改变,而不仅仅是替换为另一个对象. x< y将实际将字符串y添加到x,而x y将创建一个新的String并返回. 这可以在ruby解释器中简单地测试:
irb(main):001:0> x = "hello" => "hello" irb(main):002:0> x << "there" => "hellothere" irb(main):003:0> x => "hellothere" irb(main):004:0> x + "there" => "hellotherethere" irb(main):005:0> x => "hellothere"
值得注意的是,x“在那里”返回“hellocherethere”,但是x的值没有变化.小心可变的字符串,他们可以来咬你.大多数其他托管语言没有可变字符串.
还要注意,String上的许多方法都具有破坏性和非破坏性的版本:x.upcase将返回一个包含大写版本的x的新字符串,而x单独; x.upcase!将返回上限值 – 并修改由x指向的对象.