首页 > 其他 > 详细

the join and dump method

时间:2014-06-21 08:28:06      阅读:316      评论:0      收藏:0      [点我收藏+]

 

 

 

join(string, ...) 
Returns a new string formed by joining the strings using File::SEPARATOR.

File.join("usr", "mail", "gumby")   #=> "usr/mail/gumby"
real_path = File.join Settings.real_dir, "#{real_name}.#{aaa}.apk"

 

 

dump( obj [, anIO] , limit=-1 ) → anIO 
Serializes obj and all descendant objects. If anIO is specified, the serialized data will be written to it, otherwise the data will be returned as a String. If limit is specified, the traversal of subobjects will be limited to that depth. If limit is negative, no checking of depth will be performed.

 

class Klass
  def initialize(str)
    @str = str
  end
  def say_hello
    @str
  end
end

 

o = Klass.new("hello\n")
data = Marshal.dump(o)
obj = Marshal.load(data)
obj.say_hello  #=> "hello\n"

 

 

 

 

 

 

 

the join and dump method,布布扣,bubuko.com

the join and dump method

原文:http://www.cnblogs.com/iwangzheng/p/3795216.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!