From: Stefano Crocco Date: 2007-01-10T02:03:00+09:00 Subject: Re: with and without initialize method Alle 17:51, martedì 9 gennaio 2007, Li Chen ha scritto: > But when  I check which methods are available in > class Object I can't see initialize there. Do I miss something? initialize is a private method, so it won't be shown by methods (which only returns the names of the publicly accessible methods). To see it, you must use private_methods: rb(main):003:0> puts Object.private_methods.sort ... include included inherited initialize initialize_copy irb_binding iterator? ... Stefano