[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

basic oO :: First Class Object

jansenh

2/7/2006 7:40:00 AM

Hi all.

What is a First Class Object, explained in Ruby context?

regards, Henning

3 Answers

Wilson Bilkovich

2/7/2006 2:21:00 PM

0

On 2/7/06, jansenh <henning.jansen@gmail.com> wrote:
> Hi all.
>
> What is a First Class Object, explained in Ruby context?
>
> regards, Henning

"first class" is a general programming-language term for something
that has all the features and behaviors of 'richer' parts of the
language.
Usually it's used when pointing out an interesting feature. Most
languages don't go around crowing about having "first-class Strings".

In Ruby, classes are also objects. Since this is cool and unusual, you
might hear people say that: 'in Ruby, classes are first-class
objects', or 'integers are first-class objects'.


Jacob Fugal

2/7/2006 4:48:00 PM

0

On 2/7/06, jansenh <henning.jansen@gmail.com> wrote:
> Hi all.
>
> What is a First Class Object, explained in Ruby context?

A good description of First-class objects is here:

http://en.wikipedia.org/wiki/First-cl...

Note that the above mentions First-class objects, not First-class
Objects. That is, the "object" being talked about is more vague than a
Ruby Object. A First-class object, as defined above, is any entity
(ie. construct) of the language which can be used without restriction
compared to other "objects"/entities in the language.

For Ruby, the prime mechanics of the language are message-passing with
object-references as arguments. Since any entity in the Ruby --
methods[1], integers, classes, strings, IO streams, or anything else
you can think of -- *can* be represented as an Object which can be
passed around and receive messages of it's own, this makes all the
entities in Ruby first-class objects[2].

Jacob Fugal

[1] Method objects are a little special. Specifically, one of the
common criteria for first-class objects is anonymous creation. For
example, and anonymous class can be created with Class.new, and an
anonymous lambda can be created via lambda{}. But while a Method
object can be derived from a method, the native representation of the
method is *not* an object, and the method must exist in a
non-anonymous form before the Method can be obtained. For me, however,
anonymous lambdas make up for this deficiency, especially once the
call semantics become unified and lambdas can handle blocks in 1.9 or
2.0.

[2] As per my definition of the prime mechanics. There may be other
activities within the language for which certain entities are not
first-class, such as mentioned in footnote 1. I also may have missed
something...


jansenh

2/8/2006 4:55:00 PM

0

Thanx for good explanations! I think I've got the idea now... regards,
Henning