鱼C论坛

 找回密码
 立即注册
查看: 2362|回复: 2

[迷途问路] 求助在使用__new__()魔法方法时候,不可变类型?

[复制链接]
发表于 2020-4-15 15:23:45 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
class Word(str):
#'''存储单词的类,定义比较单词的几种方法'''

    def __init__(self, word):
        # 注意我们必须要用到 __new__ 方法,因为 str 是不可变类型
        # 所以我们必须在创建的时候将它初始化
        if ' ' in word:
            print ("Value contains spaces. Truncating to first space.")
            word = word[:word.index(' ')] #单词是第一个空格之前的所有字符
            print(word)
        #return str.__new__(cls, word)

    def __gt__(self, other):
        return len(self) > len(other)
    def __lt__(self, other):
        return len(self) < len(other)
    def __ge__(self, other):
        return len(self) >= len(other)
    def __le__(self, other):
        return len(self) <= len(other)

上述代码是12章42讲的答案,我讲__new__()方法改成用__int__()进行初始化的时候,当实例化对象的时候,word并没有删除空格,请教各位大侠?
例如:
>>> c=Word('ss  dfsd')
Value contains spaces. Truncating to first space.
ss
>>> a = Word('sdfs')
>>> c
'ss  dfsd'
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-4-15 15:26:23 | 显示全部楼层
1,https://www.jianshu.com/p/08d7956601de
2,都买了VIP了,还不知道发问题帖子的板块吗?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-4-16 15:26:39 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-24 20:19

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表