Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Why are methods in ruby documentation preceded by a pound sign?

EDIT: Duplicate of Why are methods in ruby documentation preceded by a pound sign?

Hi,

I'm trying to learn Ruby for fun at my spare time with the free Programming Ruby book. It is mostly fairly straight forward but I kept seeing notations like this *KaraokeSong#to_s*, which is not really explained in the earlier chapters of the book.

I know it meant <class>#<method> but it is something you can use in the code? or just a notation ruby programmers use to specifiy a method like <class>::<method> notation used by C++ programmers?

share|improve this question
This is a duplicate of StackOverflow.Com/questions/736120 . Interestingly, none of the answers to that question answer the most trivial aspect: why the # sign? – Jörg W Mittag Aug 22 '09 at 20:56

marked as duplicate by Ed S., Jörg W Mittag, Chris Bunch, sth, redsquare Aug 24 '09 at 14:56

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 8 down vote accepted

# = instance method

:: = class method

share|improve this answer

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.

BTW, I asked the same question some time ago :-)

share|improve this answer
really? I did browse through the list of suggestions before I ask the question. Anyway, so does it mean its just used for rdoc to generate document? So you can't really use class#method to say get the reference to a method object using this notation? – kuosan Aug 22 '09 at 20:22
Yeah, it's not always easy to find stuff around here. – Ed S. Aug 22 '09 at 21:05

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