Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Ruby 1.9.3
我正在寻找将数组写入文件并能够将其取回的最佳方法(稍后在另一个数组中)
谢谢
如果数组只包含字符串和数字,您可以使用Marshal、YAML甚至CSV序列化您的数组。
使用 ruby 有很多方法可以做同样的事情,我建议查看 IO 类http://www.ruby-doc.org/core-1.9.3/IO.html#method-c-write
IO.read 和 IO.write 是可能的方法来做到这一点。