What\'s the difference between a class method and an instance method?
Are instance methods the accessors (getters and setters) while class methods are pretty much ev
Class methods can't change or know the value of any instance variable. That should be the criteria for knowing if an instance method can be a class method.