有什么方法可以覆盖Python的内置类吗?

2022-03-25 00:00:00 python python-3.6

问题描述

我正在尝试更改python的int类的行为,但我不确定是否可以使用纯python来完成。以下是我到目前为止尝试的内容:

import builtins
class int_new(builtins.int):
    def __eq__(self, other):
        return True
int = int_new
print(5 == 6) # the result is False, but I'm anticipating True

解决方案

一年后,我终于知道了我想知道的。当我学习Python时,我没有接触到什么是原始类型的概念。在学习了C++之后,我意识到我实际上想知道是否有可能用其他自定义类型替换原始类型。答案显然是否定的。

相关文章