可能重复:
对“<<”的作用感兴趣
我读过Ruby 类继承:什么是`<<`(双倍小于)?. 我知道它有助于为实例创建方法(一种继承)。但是我遇到了一个代码:
threads << Thread.new(page) { |myPage|
h = Net::HTTP.new(myPage, 80)
puts "Fetching: #{myPage}"
resp, data = h.get('/', nil )
puts "Got #{myPage}: #{resp.message}"
}
threads
数组在哪里。有人可以解释使用<<
对象而不是类的用法吗?