[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

Flag this message private class methods- functionality or shortcoming?

amit saxena

6/9/2008 2:17:00 PM

My apologies for resending but there were some formatting errors in the code.

I just switched to Ruby and came across it.
If we have to make a class method private then we should write it as:

class Abc

class<<self
private
def fun
p "hello"
end
end

end

But if we write as:

class Abc

private
def self.fun
p "hello"
end

end

then the class method is not private but behaves as public.

So, is it a carefully designed functionality? If so, then what is the thinking behind it?
OR any other reasons behind it?
Somebody told me that ruby encourages to define class methods the first way.
But I think that if you are giving more than one methods to do a thing, then all should function the same way.

Thanks and Regards,
Amit