目的:打好基础,并且深入理解Ruby语言的原理,以及它的运行机制
Ruby In Nutshell快看完3章了,前面懒得写了,
继续从Built-in Lib看:
Ruby 的 Built-in Lib主要包括:
1 Objects
Object class, Kernal module
2 String and Regex
String, Regex
3 Array and Hash
Array, Hash, Enumerable
4 Numbers
Numeric, Integer, Fixnum, Bignum, Float
Fixnum inherit from Integer
Bignum inherit from Integer
Comparable module
Math class
5 OS Service
IO is a superclass of other IO related classes, such as File, BasicSocket, etc.
File File::Stat Dir Process
6 Threads
7 Exception
8 Built-in Exception
9 OOP
Class Module
10 Proc Objects and Bindings
11 Miscellaneous Classes and Modules