博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
the join and dump method
阅读量:6453 次
发布时间:2019-06-23

本文共 789 字,大约阅读时间需要 2 分钟。

 

 

 

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  endend

 

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

 

 

 

 

 

 

 

转载于:https://www.cnblogs.com/iwangzheng/p/3795216.html

你可能感兴趣的文章
修正锚点跳转位置 避免头部fixed固定部分遮挡
查看>>
linux下ping不通的解决方法
查看>>
利用ItextPdf、core-renderer-R8 来生成PDF
查看>>
irc操作小记
查看>>
JAVA 与 PHP 的不同和相同
查看>>
建立Ftp站点
查看>>
NavigationController的使用
查看>>
多线程编程之Windows环境下创建新线程
查看>>
ASP.Net MVC的开发模式
查看>>
groupbox 下的datagridview的列标题字体修改混乱
查看>>
HDU-3092 Least common multiple---数论+分组背包
查看>>
CentOS 7使用systemctl如何补全服务名称
查看>>
Unity3D NGUI 给button按钮添加单间事件
查看>>
C# 使用各种API
查看>>
密码的校验.大小写字母,数字,特殊字符中的至少3种
查看>>
ios 不同sdk4.3 6.0版本号,关于方法的兼容性的通用方法
查看>>
Shell编程学习总结
查看>>
070、如何定制Calico 网络policy(2019-04-15 周一)
查看>>
构建之法阅读笔记02
查看>>
Webstorm常用快捷键备忘
查看>>