没有合适的资源?快使用搜索试试~ 我知道了~
Ruby_Programming
需积分: 10 8 下载量 26 浏览量
2017-10-30
22:25:05
上传
评论
收藏 1019KB PDF 举报
温馨提示
本书为日本公认的最好的Ruby入门教程。松本行弘亲自审校并作序推荐。本书支持最新的Ruby 2.0,也附带讲解了可运行于1.9版本的代码,事无巨细且通俗易懂地讲解了编写程序时所需要的变量、常量、方法、类、流程控制等的语法,以及主要类的使用方法和简单的应用,让没有编程经验的读者也能轻松掌握Ruby,找到属于自己的快乐编程方式,做到融会贯通并灵活运用到实际工作中。 本书适合Ruby初学者学习参考。
资源推荐
资源详情
资源评论
Ruby Programming
Wikibooks.org
December 1, 2012
On the 28th of April 2012 the contents of the English as well as German Wikibooks and Wikipedia projects were
licensed under Creative Commons Attribution-ShareAlike 3.0 Unported license. An URI to this license is given
in the list of figures on page 249. If this document is a derived work from the contents of one of these projects
and the content was still licensed by the project under this license at the time of derivation this document has
to be licensed under the same, a similar or a compatible license, as stated in section 4b of the license. The
list of contributors is included in chapter Contributors on page 243. The licenses GPL, LGPL and GFDL are
included in chapter Licenses on page 253, since this book and/or parts of it may or may not be licensed under
one or more of these licenses, and thus require inclusion of these licenses. The licenses of the figures are given
in the list of figures on page 249. This PDF was generated by the L
A
T
E
X typesetting software. The L
A
T
E
X source
code is included as an attachment (
source.7z.txt
) in this PDF file. To extract the source from the PDF
file, we recommend the use of
http://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/
utility or clicking the paper clip attachment symbol on the lower left of your PDF Viewer, selecting
Save
Attachment
. After extracting it from the PDF file you have to rename it to
source.7z
. To uncompress
the resulting archive we recommend the use of
http://www.7-zip.org/
. The L
A
T
E
X source itself
was generated by a program written by Dirk HÃijnniger, which is freely available under an open source
license from
http://de.wikibooks.org/wiki/Benutzer:Dirk_Huenniger/wb2pdf
. This
distribution also contains a configured version of the
pdflatex
compiler with all necessary packages and
fonts needed to compile the L
A
T
E
X source included in this PDF file.
Contents
1 Overview . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
1.1 Features . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
1.2 References . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
2 Installing Ruby . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
2.1 Operating systems . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
2.2 Building from Source . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
2.3 Compile options . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
2.4 Testing Installation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
2.5 References . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
3 Ruby editors . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
4 Notation conventions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
4.1 Command-line examples . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
5 Interactive Ruby . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
5.1 Running irb . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
5.2 Understanding irb output . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18
6 Mailing List FAQ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19
7 Basic Ruby - Hello world . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
7.1 Hello world . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
7.2 Comments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
7.3 Executable Ruby scripts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
8 Basic Ruby - Strings . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
8.1 String literals . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
8.2 Single quotes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
8.3 Double quotes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28
8.4 puts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29
8.5 print . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29
8.6 See also . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 30
9 Basic Ruby - Alternate quotes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31
9.1 Alternate single quotes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31
9.2 Alternate double quotes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 32
10 Basic Ruby - Here documents . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33
10.1 Here documents . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33
10.2 Indenting . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 34
10.3 Quoting rules . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35
11 Basic Ruby - Introduction to objects . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37
11.1 What is an object? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37
11.2 Variables and objects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37
11.3 Methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38
11.4 Reassigning a variable . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39
12 Basic Ruby - Ruby basics . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
III
Contents
13 Dealing with variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43
14 Program flow . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45
15 Writing functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47
16 Blocks . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49
17 Ruby is really, really object-oriented . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53
18 Basic Ruby - Data types . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55
18.1 Ruby Data Types . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55
18.2 Constants . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55
18.3 Symbols . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56
18.4 Hashes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 57
18.5 Arrays . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 58
18.6 Strings . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 62
18.7 Numbers (Integers and Floats) . . . . . . . . . . . . . . . . . . . . . . . . . . . . 66
18.8 Additional String Methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 67
19 Basic Ruby - Writing methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 69
19.1 Defining Methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 69
20 Basic Ruby - Classes and objects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 71
20.1 Ruby Classes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 71
20.2 Creating Instances of a Class . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 71
20.3 Creating Classes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 71
20.4 Self . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 72
20.5 Class Methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 72
21 Basic Ruby - Exceptions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75
22 Syntax - Lexicology . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 77
22.1 Identifiers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 77
22.2 Comments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 77
22.3 Embedded Documentation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 77
22.4 Reserved Words . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 78
22.5 Expressions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 78
23 Syntax - Variables and Constants . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 79
23.1 Local Variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 79
23.2 Instance Variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 79
23.3 Class Variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 80
23.4 Global Variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 80
23.5 Constants . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 80
23.6 Pseudo Variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 81
23.7 Pre-defined Variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 82
23.8 Pre-defined Constants . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85
23.9 Notes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85
24 Syntax - Literals . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87
24.1 Numerics . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87
24.2 Strings . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87
24.3 Arrays . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 91
24.4 Hashes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 92
24.5 Ranges . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 92
25 Syntax - Operators . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 95
25.1 Operators . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 95
25.2 Scope . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 96
IV
Contents
25.3 Default scope . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 99
25.4 Local scope gotchas . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 99
25.5 Logical And . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 100
25.6 Logical Or . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 101
26 Syntax - Control Structures . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 103
26.1 Control Structures . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 103
27 Syntax - Method Calls . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 109
27.1 Method Calls . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 109
27.2 Method Definitions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 109
27.3 Dynamic methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 118
27.4 Special methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 119
27.5 Conclusion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 119
28 Syntax - Classes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 121
28.1 Class Definition . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 121
28.2 Declaring Visibility . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 125
28.3 Inheritance . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 129
28.4 Mixing in Modules . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 131
28.5 Ruby Class Meta-Model . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 132
29 Syntax - Hooks . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 133
29.1 const_missing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 133
30 References . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 135
31 Built-In Functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 137
32 Predefined Variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 139
33 Predefined Classes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 143
33.1 Footnotes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 143
34 Objects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 145
35 Array . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 147
36 Class . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 149
37 Comparable . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 151
38 Encoding . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 153
39 Enumerable . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 155
39.1 Enumerable . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 155
40 Forms of Enumerator . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 157
40.1 1. As a proxy for “each” . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 157
40.2 2. As a source of values from a block . . . . . . . . . . . . . . . . . . . . . . . . . 157
40.3 3. As an external iterator . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 158
41 Lazy evaluation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 159
42 Methods which return Enumerators . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 161
43 More Enumerator readings . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 163
44 Exception . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 165
45 FalseClass . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 167
46 IO - Fiber . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 169
47 IO . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 171
47.1 Encoding . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 171
47.2 gets . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 171
47.3 recv . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 171
47.4 read . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 171
48 IO - File . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 173
V
剩余260页未读,继续阅读
资源评论
liani1028
- 粉丝: 0
- 资源: 2
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- python的uds诊断相关接口
- 视觉生成领域中的并行自回归模型加速研究
- 基于51单片机和DS18B20的温度检测和报警系统,可设置报警温度上下限,输出温度采用数码管显示
- 2020年山东省职业院校技能大赛网络搭建与应用赛题
- bp神经网络交叉验证算法和确定最佳隐含层节点个数matlab 程序,直接运行即可 数据excel格式,注释清楚,效果清晰,一步上手
- 基于51单片机设计的火灾报警器,传感器包括烟雾,光强,温度传感器,同时本工程包含了labview的上位机
- Python毕业设计-YOLOV5火灾火焰烟雾检测数据集+训练好的模型+标注好的数据+pyqt界面+源码
- Minecraft Python Console
- llvm cmake fsf fasdf der
- 445981218017804USB摄像头.apk
- Python毕业设计-YOLOV5火灾火焰烟雾检测数据集+模型+源码
- 预训练扩散变换器线性化优化方法:引入CLEAR机制加速图像生成
- 基于YOLOv5的神经网络训练用于检测火灾初期的火焰和烟雾模型源码+数据集
- Python毕业设计-基于YOLOv5的神经网络训练用于检测火灾初期的火焰和烟雾模型源码+数据集
- 基于PINN方法的热传导问题求解及结果输出
- Python基于YOLOv5的神经网络训练用于检测火灾初期的火焰和烟雾模型源码+数据集
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功