Subclassing self

X-No-archive: yes

I’m a new ruby user. I have the Ruby Way book.

My question is, in what case would you use

class TheClass
class << self
def foo

Couldn’t you just say

class TheClass
def foo

?

No; that would define an instance method called ‘foo’.
The first example defines a class method called ‘foo’.

That is, in the first example, you would call it like this:

TheClass.foo

And within the method, ‘self’ would refer to TheClass.

In your version, TheClass.foo doesn’t exist; instead, you
have to instantiate the class and call foo on the object:

obj = TheClass.new
obj.foo

And within the method, ‘self’ will refer to obj.

Instead of using the class << self notation, you could do this:

class TheClass
    def TheClass::foo

But that can get tedious when defining multiple class methods,
plus you run the risk of missing a change if you rename the class
later.

-Mark

···

On Tue, Sep 09, 2003 at 12:54:01PM -0700, John wrote:

My question is, in what case would you use

class TheClass
class << self
def foo

Couldn’t you just say

class TheClass
def foo

Take a look at http://www.rubygarden.org/ruby?ClassMethods

Gavin

···

On Wednesday, September 10, 2003, 6:06:26 AM, John wrote:

X-No-archive: yes

I’m a new ruby user. I have the Ruby Way book.

My question is, in what case would you use

class TheClass
class << self
def foo

Couldn’t you just say

class TheClass
def foo

I was just shown:

class TheClass
    def self.foo

This way you don’t risk the missing a change when you rename the
class. You still get the tedious typing though. :slight_smile:

However, what does ‘class << self’ really mean? Why is this one
of the ‘obvious’ ways to define class methods?

No, I’m not being sarcastic, just realizing that I don’t know the ruby
language as well as I would want to. To me it looks like we’re
shifting the current class into an anonymous class, and how that can
spell ‘class methods’ I really can’t see. :slight_smile:

//F

···

On Wed, Sep 10, 2003 at 05:06:28AM +0900, Mark J. Reed wrote:

Instead of using the class << self notation, you could do this:

class TheClass
def TheClass::foo

But that can get tedious when defining multiple class methods,
plus you run the risk of missing a change if you rename the class
later.

class << obj opens the singleton class of obj. In a class context,
self points to the Class object, therefore in

class A
self # this is A
class << self # same as class << A but needs not be changed if
# if A is renamed
# we’re in A’s singleton class
end
end

Class methods are in fact class singleton methods (ie. singleton methods
of the object of class Class). You sometimes want to use the class << self
idiom to create attribute accessors for the class, etc:

class A
class << self
attr_accessor :foo
end
end

A.foo = 1
A.foo # => 1

···

On Thu, Sep 11, 2003 at 06:00:00AM +0900, Fredrik Jagenheim wrote:

On Wed, Sep 10, 2003 at 05:06:28AM +0900, Mark J. Reed wrote:

Instead of using the class << self notation, you could do this:

class TheClass
  def TheClass::foo

But that can get tedious when defining multiple class methods,
plus you run the risk of missing a change if you rename the class
later.

I was just shown:

class TheClass
    def self.foo

This way you don’t risk the missing a change when you rename the
class. You still get the tedious typing though. :slight_smile:

However, what does ‘class << self’ really mean? Why is this one
of the ‘obvious’ ways to define class methods?


_ _

__ __ | | ___ _ __ ___ __ _ _ __
'_ \ / | __/ __| '_ _ \ / ` | ’ \
) | (| | |
__ \ | | | | | (| | | | |
.__/ _,
|_|/| || ||_,|| |_|
Running Debian GNU/Linux Sid (unstable)
batsman dot geo at yahoo dot com

Make it idiot-proof, and someone will breed a better idiot.
– Oliver Elphick

It’s not necessarily obvious; it’s an idiom, but it makes perfect
sense once you know, and it involves core Ruby concepts, so it is
worth knowing.

s = “Hi”
class << s
def foo # Singleton method on object s
5
end
end
s.foo # → 5

s = String
class << s
def foo # Singleton method on object String
5
end
end
s.foo # → 5
String.foo # → 5

See http://www.rubygarden.org/ruby?ClassMethods for more info.

Gavin

···

On Thursday, September 11, 2003, 7:00:00 AM, Fredrik wrote:

On Wed, Sep 10, 2003 at 05:06:28AM +0900, Mark J. Reed wrote:

Instead of using the class << self notation, you could do this:

  class TheClass
      def TheClass::foo

But that can get tedious when defining multiple class methods,
plus you run the risk of missing a change if you rename the class
later.

I was just shown:

class TheClass
    def self.foo

This way you don’t risk the missing a change when you rename the
class. You still get the tedious typing though. :slight_smile:

However, what does ‘class << self’ really mean? Why is this one
of the ‘obvious’ ways to define class methods?