Ruby笔记
文章平均质量分 91
Philippian
这个作者很懒,什么都没留下…
展开
-
1. Ruby基础知识
1. Ruby执行选项 符号 作用 -c 检查代码正确性 -w 警告模式运行 -e 字面脚本 -l 行模式运行单独ruby -c Hello.rb组合ruby -le 'print "Hello";print "Ruby"'2. 常量,变量2.1 常量通常以首字母大写或全部大写为常量。CON1=1000puts "I got"+CON1.to_s+"RMBy原创 2016-09-27 13:48:41 · 1923 阅读 · 0 评论 -
2 基础知识补充
1. 模块1.1 定义,含混module ModuleName def moduleInfo puts "I am a method in Module" end def self.moduleInfo2 puts "类方法成员" endendclass PastInclude include ModuleName #混含原创 2016-09-28 11:29:58 · 1639 阅读 · 0 评论