如何在 Python 2.5 中检查类相等性?
我浏览了 Python 2.5 文档,但找不到答案:How do I check if an object is the same class as another object?
def IsClass(obj1, obj2):
return obj1.class == obj2.class #doesn't work
I've looked through Python 2.5 documentation and I couldn't find an answer to this: How do I check if an object is the same class as another object?
def IsClass(obj1, obj2):
return obj1.class == obj2.class #doesn't work
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
注意,您通常会尝试避免在 Python 中进行类型检查,而是依赖 鸭子打字。
You can use
Note that you usually try to avoid type checking in Python, but rather rely on duck typing.
我认为你想做的是使用 type(obj)。 :)
-编辑- 看起来他比我先一步。他关于鸭子打字的说法是正确的。
I think what you want to do is use type(obj). :)
-EDIT- Looks like he beat me to it. And he's right about the Duck Typing.