Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is something that has been bugging me for a while. When you see any ruby method printed in text, it usually appears as

Class#method

or

#method

Now, I would use

Class.method

Why are all ruby methods preceded by a pound sign? Is there any reason for it? Just curious.

share|improve this question

5 Answers

up vote 9 down vote accepted

From the rdoc docs:

Names of classes, source files, and any method names containing an underscore or preceded by a hash character are automatically hyperlinked from comment text to their description.

(Emphasis added.)

share|improve this answer
5  
This doesn't answer the question. – Horace Loeb Apr 10 '09 at 16:07
7  
The question is why is the # sign used. The answer is so that rdoc will add appropriate links. If you have another answer, please add it. – Sarah Mei Apr 10 '09 at 17:04
Well, this is true in the sense that the docs do hyperlink these methods, it has nothing to do with the question which is regarding the significance of the notation. This is a classic case of someone unfamiliar with the language rushing to the docs in an attempt to have their answer accepted. For shame for the attitude when called on it. Look below for a helpful answer, it is a helpful notation indicating an instance method. – mateor Jan 31 at 21:03

Note that the convention is:

Class#method

rather than

object#method

In code you would have object.method, if object was an instance of class. The # convention is not used in code.

From the RDoc documentation:

Use :: for describing class methods, # for describing instance methods, and use . for example code.

share|improve this answer
Yes, sorry, Class#Method. Thanks. – Ed S. Apr 9 '09 at 23:57
1  
I know that # is not used in code, but why is it used at all? – Ed S. Apr 9 '09 at 23:58
The link seems to have rusted but enough was quoted to let me find a current source: ruby-doc.org/documentation-guidelines.html – user18096 Oct 3 '11 at 18:21
@user18096: thanks, link updated. – Simon Nickerson Oct 6 '11 at 12:22

The # notation is used to refer to the canonical instance method, like String#upcase. The . notation is used to refer to the method of a particular instance, like mystring.upcase. The distinction is made to not imply that a class method 'upcase' exists.

share|improve this answer

I just realized that none of the other answers touch the most trivial aspect of the question: why the # sign?

I have two theories:

  1. It might come from Smalltalk, where symbols are written #sym (instead of :sym) as they are in Ruby. So, if you want to refer to a Method object (as opposed to calling a method), then you would call something like Array >> #new. (The >> is itself a method that returns the method passed to it. So, in Ruby that would be Array.method :new.) In Smalltalk documentation, methods are generally referred to as Class>>method, but in Ruby Class:method would have made more sense, except that it is easily confused with Class::method. Therefore, Class#method was chosen.
  2. My other theory is that it simply was chosen because # is the comment character in Ruby.

A definitive answer can only be given by whoever invented that convention. If it was invented for the Programming Ruby book, that would be either Dave Thomas or Andy Hunt, but I kind of doubt that. The book came out in 2001, Ruby started in 1993, how were they referring to methods before then?

share|improve this answer
1  
I've heard that the pragmatic programmers created the documentation for Ruby as well (they wanted to seed the documentation so that others would be "fooled" into adding to it). git can take you back to 1998, so you could check if Class#method_name happened before the prag progs added it. – Andrew Grimm May 31 '11 at 3:36
I've since heard that documentation did exist before the prag progs started adding it into the source code. – Andrew Grimm Apr 16 '12 at 23:34

All the answers above you list are correct. The one thing I would add is that the documentation style you said you would perfer

Class.method

would be easily confused with class methods. Since you can call class methods in ruby using the above syntax:

class Foo
  def self.say_hi
    puts "hi"
  end
end

Foo.say_hi    # => prints "hi"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.