如何在 Python 2.5 中检查类相等性?

发布于 2024-11-03 23:52:59 字数 199 浏览 0 评论 0原文

我浏览了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

窗影残 2024-11-10 23:52:59

您可以使用

type(obj1) is type(obj2)

注意,您通常会尝试避免在 Python 中进行类型检查,而是依赖 鸭子打字

You can use

type(obj1) is type(obj2)

Note that you usually try to avoid type checking in Python, but rather rely on duck typing.

热鲨 2024-11-10 23:52:59

我认为你想做的是使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文