What is the difference between class and instance methods?

后端 未结 18 2172
说谎
说谎 2020-11-21 11:55

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

18条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-11-21 12:36

    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.

提交回复
热议问题