在Ruby中使用Marshal :: dump进行对象序列化时如何写入文件

前端之家收集整理的这篇文章主要介绍了在Ruby中使用Marshal :: dump进行对象序列化时如何写入文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
假设我有类Line的对象行:
class Line
  def initialize point1,point2
    @p1 = point1
    @p2 = point2
  end
end

line = Line.new …

如何对行对象进行二进制序列化?我尝试过:

data = Marshal::dump(line,"path/to/still/unexisting/file")

但它创建了文件,并没有添加任何东西.我读了Class:IO文档,但我无法真正理解它.

解决方法

喜欢这个:
class Line
  attr_reader :p1,:p2
  def initialize point1,point2
    @p1 = point1
    @p2 = point2
  end
end

line = Line.new([1,2],[3,4])

保存线:

FNAME = 'my_file'

File.open(FNAME,'wb') {|f| f.write(Marshal.dump(line))}

检索到line1:

line1 = Marshal.load(File.binread(FNAME))

确认它有效:

line1.p1 # => [1,2]
原文链接:https://www.f2er.com/ruby/274321.html

猜你在找的Ruby相关文章