From: Ryan Davis Date: 2011-02-23T13:16:48+09:00 Subject: Re: Calling class method from instance method On Feb 22, 2011, at 17:44 , marco antonio f. wrote: > Is it possible to do the opposite? call a instance method from a class > method? When you have an instance "call a class method" you're really having the instance ask the class (an instance of Class) to call it's method. When you want to have a class call an "instance method", which instance would call it?