Python中的@staticmethod,@classmethod,self,cls到底是什么意思?
普通类方法在Python中,通常我们调用某个类的方式,首先要实例化一个对象才能调用该类的方法,比如:# _*_ coding:utf_8 _*_class People: def hello(self): print("hello, Everyone.")# 实例化一个对象LiMing = People()LiMing.hello()"""""""""""...
原创
2019-11-26 00:22:20 ·
1738 阅读 ·
1 评论