美文网首页
python 的类 和 静态方法

python 的类 和 静态方法

作者: 前端技师胡帅博 | 来源:发表于2021-05-17 16:48 被阅读0次
    log = print
    
    # python 的类 和 静态方法
    class Student(object):
        school = {
            "globle": {
                "localOffset": 0,
            }
        }
    
        @staticmethod
        def test():
            Student.school['function_name'] = {
                "localOffset": 0,
                "return_bytes": 123,
            }
            log("Student.school11111", Student.school)
    
    
    
    Student.test()
    
    
    

    相关文章

      网友评论

          本文标题:python 的类 和 静态方法

          本文链接:https://www.haomeiwen.com/subject/stlyjltx.html