Project

General

Profile

Actions

Feature #1431

closed

Object#__class__

Added by svoop (Sven Schwyn) almost 15 years ago. Updated almost 13 years ago.

Status:
Rejected
Target version:
[ruby-core:23355]

Description

=begin
Consider the following code using class instance variables:

class Car
def self.total_count=(n)
@total_count = n
end

def initialize
self.class.total_count = 0
end
end

The compile requires "self.class.total_count" as the more readable "class.total_count" is mistaken by the parser as a faulty class definition.

How about adding a class method to Object?

class Object
def class
self.class
end
end

It would allow the use of "class" as a de facto prefix for class instance variables and would fit e.g. the id/id and send/send paradigm.
=end

Actions #1

Updated by yugui (Yuki Sonoda) almost 15 years ago

  • Assignee set to matz (Yukihiro Matsumoto)
  • Priority changed from Normal to 3
  • Target version set to 2.0.0

=begin

=end

Actions #2

Updated by marcandre (Marc-Andre Lafortune) over 14 years ago

=begin
-1 because:

a) class is more keystrokes (if you count the shift key)
b) self.class is clear (and exists currently)
c) I feel that something should ideally be reserved for special cases; self.class isn't. I am aware that FILE was used a lot before and there's talk about dir, but I think that require_relative is now a better solution for most of these cases.
=end

Actions #3

Updated by naruse (Yui NARUSE) over 14 years ago

  • Status changed from Open to Rejected

=begin

=end

Actions

Also available in: Atom PDF

Like0
Like0Like0Like0