python中staticmethod的作用

python中的staticmethod 主要是方便将外部函数集成到类体中, 美化代码结构, 重点在可以不需要类实例化的情况下调用方法

如果去掉staticmethod,在方法中加self也可以通过实例化访问方法也是可以集成代码

1. 不使用staticmethod的代码如何写的:

IND = ‘ON‘
def checkind():
    return (IND== ‘ON‘)
class Kls(object):
    def __init__(self, data):
        self.data = data

    def de_reset(self):
        if checkind():
            print ( ‘Reset done for:‘ + self.data )
    def set_db(self):
        if checkind():
            self.db = ‘New db connection‘
            print ( ‘DB connection made for:‘ + self.data )

ik1 = Kls(12)
ik1.do_reset()
ik1.set_db()

结果:
Reset done for: 12
DB connection made for: 12

2. 使用staticmethod的代码, 用staticmethod包装的方法可以内部调用, 也可以通过类访问或类实例化访问:

IND = ‘ON‘
class Kls(object):
    def __init__(self, data):
        self.data = data

    @staticmethod    #加了@staticmethod,把外部方法集成到类体
    def checkind():
        return (IND== ‘ON‘)

    def de_reset(self):
        if checkind():
            print ( ‘Reset done for:‘ + self.data )
    def set_db(self):
        if checkind():
            self.db = ‘New db connection‘
            print ( ‘DB connection made for:‘ + self.data )

ik1 = Kls(12)
ik1.do_reset()
ik1.set_db()

print(ik1.checkind())
print(Kls.checkind())

结果:
Reset done for: 12
DB connection made for: 12
True
True

两个代码的区别后者是加了@staticmethod, 把方法checkind()放入类中,既有在类内调用,也可以在类外通过类来调用(不一定要实例化)

原文地址:https://www.cnblogs.com/zpf1092841490/p/8136291.html

时间: 2024-10-12 03:23:35

python中staticmethod的作用的相关文章

Python中__new__的作用

__new__ 的作用 依照Python官方文档的说法,__new__方法主要是当你继承一些不可变的class时(比如int, str, tuple), 提供给你一个自定义这些类的实例化过程的途径.还有就是实现自定义的metaclass. 首先我们来看一下第一个功能,具体我们可以用int来作为一个例子: 假如我们需要一个永远都是正数的整数类型,通过集成int,我们可能会写出这样的代码. class PositiveInteger(int): def __init__(self, value):

python中 staticmethod与classmethod

原文地址https://blog.csdn.net/youngbit007/article/details/68957848 原文地址https://blog.csdn.net/weixin_35653315/article/details/78165645 原文地址https://www.cnblogs.com/1204guo/p/7832167.html 在Python里, 在class里定义的方法可以大致分为三类: 实例方法, 类方法与静态方法. 用一个表格总结如下: 方法类型 修饰 调用

python中@staticmethod、@classmethod和实例方法

1.形式上的异同点: 在形式上,Python中:实例方法必须有self,类方法用@classmethod装饰必须有cls,静态方法用@staticmethod装饰不必加cls或self,如下代码所示: 1 class A(object): 2 def __init__(self, name): 3 self.name = name 4 5 def get_a_object(self): 6 return "get object method:{}".format(self.name)

Python中@staticmethod和@classmethod的作用和区别

相同之处:@staticmethod 和@classmethod 都可以直接类名.方法名()来调用,不用在示例化一个类. @classmethod 我们要写一个只在类中运行而不在实例中运行的方法.如果我们想让方法不在实例中运行,可以这么做: def iget_no_of_instance(ins_obj): return ins_obj.__class__.no_inst class Kls(object): no_inst = 0 def __init__(self): Kls.no_inst

[问与答]Python 中 __all__ 的作用 ?

你要是看Python的源码或者相关框架的源码,总是在 __init__.py 或者是源文件的开头看到一个 __all__ 变量的定义,今天就说说它的作用. orangleliu 问题出处 Can someone explain all in Python? 问题 我越来越多的使用Python了,经常看到 __all__ 变量再各种 __init__.py 文件中,谁能解释为什么那么做呢? 解答 它是一个string元素组成的list变量,定义了当你使用 from <module> import

python中staticmethod classmethod及普通函数的区别

staticmethod 基本上和一个全局函数差不多,只不过可以通过类或类的实例对象 (python里光说对象总是容易产生混淆, 因为什么都是对象,包括类,而实际上 类实例对象才是对应静态语言中所谓对象的东西)来调用而已, 不会隐式地传入 任何参数.这个和静态语言中的静态方法比较像. classmethod 是和一个class相关的方法,可以通过类或类实例调用, 并将该class对象(不是class的实例对象)隐式地 当作第一个参数传入. 就这种方法可能会比较奇怪一点,不过只要你搞清楚了pyth

python中@property的作用和getter setter的解释

@property作用: python的@property是python的一种装饰器,是用来修饰方法的. 我们可以使用@property装饰器来创建只读属性,@property装饰器会将方法转换为相同名称的只读属性,可以与所定义的属性配合使用,这样可以防止属性被修改. 1.修饰方法,让方法可以像属性一样访问. class DataSet(object): @property def method_with_property(self): ##含有@property return 15 def m

python中reload(sys)作用

python在安装时,默认的编码是ascii,当程序中出现非ascii编码时,python的处理常常会报错UnicodeDecodeError: 'ascii' codec can't decode byte 0x?? in position 1: ordinal not in range(128),python没办法处理非ascii编码的,此时需要自己设置python的默认编码,一般设置为utf8的编码格式. 在程序中加入以下代码:即可将编码设置为utf8import sysreload(sy

笔记-Python中逗号的作用

1.用,去掉额外的换行符 >>> for i in range(0,5): ...     print i ... 0 1 2 3 4 >>> for i in range(0,5): ...     print i, ... 0 1 2 3 4 很明显 print语句默认的会在后面加上 换行  加了逗号之后 换行 就变成了 空格 赋值表达式的后面加了逗号后,会自动得到一个tuple的对象 >>> a = 1>>> b = 2,>