用户注册



邮箱:

密码:

用户登录


邮箱:

密码:
记住登录一个月忘记密码?

发表随想


还能输入:200字
云代码 - python代码库

Python的元编程和反射使用案例

2023-04-02 作者: Python自学举报

[python]代码库

class MyClass:
    my_attribute = 42

    def my_method(self, arg):
        print(f"This is my_method with arg {arg}.")

obj = MyClass()

print(hasattr(obj, "my_method"))
print(hasattr(obj, "my_attribute"))

# Output:
# True
# True

# Using getattr to access an attribute
print(getattr(obj, "my_attribute"))

# Output:
# 42

# Using setattr to add an attribute
setattr(obj, "new_attribute", "hello")
print(obj.new_attribute)

# Output:
# hello

# Using delattr to delete an attribute
delattr(obj, "new_attribute")
print(hasattr(obj, "new_attribute"))

# Output:
# False

# Dynamically creating a class
MyDynamicClass = type("MyDynamicClass", (), {"my_attribute": 42, "my_method": lambda self, arg: print(f"This is my_method with arg {arg}.")})

obj2 = MyDynamicClass()

print(obj2.my_attribute)
obj2.my_method("test")

# Output:
# 42
# This is my_method with arg test.


网友评论    (发表评论)


发表评论:

评论须知:

  • 1、评论每次加2分,每天上限为30;
  • 2、请文明用语,共同创建干净的技术交流环境;
  • 3、若被发现提交非法信息,评论将会被删除,并且给予扣分处理,严重者给予封号处理;
  • 4、请勿发布广告信息或其他无关评论,否则将会删除评论并扣分,严重者给予封号处理。


扫码下载

加载中,请稍后...

输入口令后可复制整站源码

加载中,请稍后...