Ruby Programming

Описание

Ruby goes to great lengths to be a purely object oriented language. Every value in Ruby is an object, even the most primitive things: strings, numbers and even true and false. Every object has a class and every class has one superclass. At the root of the class hierarchy is the class Object, from which all other classes inherit. Every class has a set of methods which can be called on objects of that class. Methods are always called on an object — there are no “class methods”, as there are in many other languages (though Ruby does a great job of faking them). Every object has a set of instance variables which hold the state of the object. Instance variables are created and accessed from within methods called on the object. Instance variables are completely private to an object. No other object can see them, not even other objects of the same class, or the class itself. All communication between Ruby objects happens through methods.

Схожие книги

Ruby Data Structures and Algorithms. Christopher Fox
Ruby
en

Ruby Data Structures and Algorithms. Christopher Fox

Practical Object-Oriented Design: An Agile Primer Using Ruby. Sandi Metz
Ruby
en

Practical Object-Oriented Design: An Agile Primer Using Ruby. Sandi Metz

Программирование на языке Ruby. Идеология языка, теория и практика применения. Хэл Фултон
Ruby
ru

Программирование на языке Ruby. Идеология языка, теория и практика применения. Хэл Фултон

Learn to Program. Крис Пайн
Ruby
ru

Learn to Program. Крис Пайн

×