===Module#included 当一个模块混入到类时,如果该模块的included方法已经定义,那么该方法被调用.该方法的唯一参数就是接受混含的类的名字. module M def self.included(c) puts "I have justbeen mixed into #{c}." end end class C include M end 也就是说当类c中执行include M时,调用self.included方法…
原文 http://tmm1.net/ruby21-objspace/ 26 Dec 2013 ObjectSpace in ruby contains many useful heap debugging utilities. Since 1.9 ruby has included objspace.so which adds even more methods to the ObjectSpace module: ObjectSpace.each_object{ |o| ... } Ob…
ruby语法-super用法 本文主要介绍ruby中super方法的使用.super方法参数传递.method执行顺序. 下面主要通过实例来说明super方法的使用: 示例1: #!/usr/bin/env ruby class A def a p 'a 1' end def a p 'a 2' super p 'a 2 END' end end b = A.new b.a 示例1输出: ➜ tmp ./test.rb "a 2" ./test.rb:9:in `a': super:…
一. 数组 1.定义一个数组 games = ["英雄联盟", "绝地求生", "钢铁雄心"] puts games 2.数组的循环 games.each do |geam| puts "玩<#{geam}>" end games.each_with_index do |game, index| puts "我喜欢的第:#{index+1}个游戏是:#{game}" end 注:相当于Pytho…
在CentOS下,我们可以通过yum来下载或更新rpm包,但是标准的源(repository)里只提供一部分的rpm包,虽然大部分情况下,这些包是够用的.但是有时候还是需要下载其他的一些非标准的包,如qemu,不然的话用户只能自己去编译对应的包,而这个可能并不是每个用户都乐意去做的.下面的网站就提供了对应的额外包的安装.http://repoforge.org/RepoForge项目给以下项目维护RPM包: Red Hat Enterprise Linux (RHEL) CentOS Scien…