2

学习python中的类。我想要两个字符串之间的差异,一种减法。例如:

a = "abcdef"
b ="abcde"
c = a - b

这将给出输出 f。

我正在看这门课,我是新手,所以想澄清一下它是如何工作的。

class MyStr(str):
    def __init__(self, val):
        return str.__init__(self, val)
    def __sub__(self, other):
        if self.count(other) > 0:
            return self.replace(other, '', 1)
        else:
            return self

这将通过以下方式工作:

>>> a = MyStr('thethethethethe')
>>> b = a - 'the'
>>> a
'thethethethethe'
>>> b
'thethethethe'
>>> b = a - 2 * 'the'
>>> b
'thethethe'

所以一个字符串被传递给类并调用构造函数__init__。这会运行构造函数并返回一个对象,其中包含字符串的值?然后创建一个新的减法函数,这样当您使用-MyStr 对象时,它只是定义了减法如何与该类一起使用?当使用字符串调用 sub 时,count 用于检查该字符串是否是所创建对象的子字符串。如果是这种情况,则删除第一次出现的传递字符串。这种理解正确吗?

编辑:基本上这个类可以简化为:

class MyStr(str):
    def __sub__(self, other):
            return self.replace(other, '', 1)
4

1 回答 1

6

是的,你的理解是完全正确的。

.__sub__()如果存在于左侧操作数上,Python 将调用一个方法;如果没有,.__rsub__()右侧操作数上的相应方法也可以挂钩到操作中。

有关 Python 支持以提供更多算术运算符的钩子列表,请参阅模拟数字类型

注意.count()调用是多余的;.replace()如果other字符串不存在,则不会失败;整个功能可以简化为:

def __sub__(self, other):
    return self.replace(other, '', 1)

反向版本将是:

def __rsub__(self, other):
    return other.replace(self, '', 1)
于 2013-07-17T15:05:57.290 回答