staticmethod 基本上和一个全局函数差不多,只不过可以通过类或类的实例对象 (python里光说对象总是容易产生混淆, 因为什么都是对象,包括类,而实际上 类实例对象才是对应静态语言中所谓对象的东西)来调用而已, 不会隐式地传入 任何参数.这个和静态语言中的静态方法比较像. classmethod 是和一个class相关的方法,可以通过类或类实例调用, 并将该class对象(不是class的实例对象)隐式地 当作第一个参数传入. 就这种方法可能会比较奇怪一点,不过只要你搞清楚了pyth…
@staticmethod 静态方法 函数修饰符,用来修饰一个函数,类似于装饰器 class Dog(object): def __init__(self,name): self.name = name def eat(self,food): print('%s is eating %s'%(self.name,food)) d = Dog('二哈') d.eat('包子') #二哈 is eating 包子 eat()方法上面加上 @staticmethod class Dog(object)…
class Kls(object): def __init__(self, data): self.data = data def printd(self): print(self.data) @staticmethod def smethod(*arg): print('Static:', arg) @classmethod def cmethod(*arg): print('Class:', arg) >>> ik = Kls(23) >>> ik.printd()…
python基础--特性(property) 1 什么是特性property property是一种特殊的属性,访问它时会执行一段功能(函数)然后返回值 import math class Circle: #定义一个圆的类 def __init__(self,radius): #圆的半径radiu self.radius=radius @property # are=property(area) def area(self): #计算面积 return math.pi*self.radius**…
python内置了property.staticmethod.classmethod三个装饰器,有时候我们也会用到,这里简单说明下 1.property 作用:顾名思义把函数装饰成属性 一般我们调用类方法成员,都是如下写法: class propertyTest(): def __init__(self,x,y): self.x = x self.y = y def square(self): return self.x * self.y pt = propertyTest(3,5) print…
例子 ? 1 2 3 4 5 6 7 8 9 10 11 12 13 class A(object):   def foo(self,x):     print "executing foo(%s,%s)"%(self,x)     @classmethod   def class_foo(cls,x):     print "executing class_foo(%s,%s)"%(cls,x)     @staticmethod   def static_foo…
面试中经常会问到staticmethod 和 classmethod有什么区别? 首先看下官方的解释: staticmethod: class staticmethod staticmethod(function) -> method Convert a function to be a static method. A static method does not receive an implicit first argument. To declare a static method, u…
面试中经常会问到staticmethod 和 classmethod有什么区别? 首先看下官方的解释: staticmethod: class staticmethod staticmethod(function) -> method Convert a function to be a static method. A static method does not receive an implicit first argument. To declare a static method, u…
转载自[1] 一般要用某个类的方法,先要实例这个类. 但是可以通过@staticmethod和@classmethod,直接用“类.方法()”来调用这个方法. 而 @staticmethod和@classmethod 区别是 @staticmethod不需要表示自身对象的self和自身类的cls参数,就跟使用函数一样. @classmethod也不需要self参数,但第一个参数需要是表示自身类的cls参数. @staticmethod中要调用到这个类的一些属性方法,可以直接类名.属性名或类名.方…
类变量 1.需要在一个类的各个对象间交互,即需要一个数据对象为整个类而非某个对象服务. 2.同时又力求不破坏类的封装性,即要求此成员隐藏在类的内部,对外不可见. 3.有独立的存储区,属于整个类.   在python中是这样使用的: class MyClass(): cls_count = 0 实例变量 1.当一个类实例化成特定对象后,在该对象命名空间的变量,只有该实例对象可以访问修改 在python中是这样使用的: class MyClass(): def __init__(self): sel…