鱼C论坛

 找回密码
 立即注册
查看: 2145|回复: 7

第47讲:魔法方法:定制序列。如何才能实现切片访问呢?

[复制链接]
回帖奖励 1 鱼币 回复本帖可获得 1 鱼币奖励! 每人限 1 次(中奖概率 10%)
发表于 2017-8-23 14:20:14 | 显示全部楼层 |阅读模式

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

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

x


也就是下面这种形式
a[:]
a[1:5]

作业网址
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2017-8-23 14:27:19 | 显示全部楼层
__index__(self)        1. 当对象是被应用在切片表达式中时,实现整形强制转换
2. 如果你定义了一个可能在切片时用到的定制的数值型,你应该定义 __index__
3. 如果 __index__ 被定义,则 __int__ 也需要被定义,且返回相同的值
        上下文管理(with 语句)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2017-8-23 14:28:07 | 显示全部楼层

回帖奖励 +1 鱼币

你只需要定义使用切片时的行为即可
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2017-8-23 14:41:19 | 显示全部楼层
黎明§末日 发表于 2017-8-23 14:28
你只需要定义使用切片时的行为即可

还是不太懂,不知能否举个例子。谢谢。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2017-8-23 14:48:27 | 显示全部楼层
好,稍等,我写一份
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2017-8-23 14:49:32 | 显示全部楼层
你加我好友,我稍后给你发过去
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2017-8-23 16:07:42 | 显示全部楼层
黎明§末日 发表于 2017-8-23 14:49
你加我好友,我稍后给你发过去

我用另外的方面实现了这个功能,可能不是最好的实现方法。
#定制序列,进阶版
#super的使用,摒弃前一版的字典

class CountList( list ):
        def __init__( self, *args ):
                super().__init__( args )
                self.count = []
                for i in args:
                        self.count.append( 0 )

        def __len__(self):
                return len( self.count )
                
        def __getitem__( self, key ):
                #可以实现切片访问
                if isinstance( key, slice ):
                        _begin = 0 if key.start == None else key.start
                        _end = len( self.count ) if key.stop == None else key.stop
                        _step = 1 if key.step == None else key.step
                        for _index in range( _begin, _end, _step ):
                                self.count[ _index ] += 1
                        return super().__getitem__( key )
                else:
                        self.count[ key ] += 1
                        return super().__getitem__( key )
                
        def __setitem__( self, key, value ):
                self.count[ key ] += 1
                super().__setitem__( key, value )
                
        def __delitem__( self, key ):
                del self.count[ key ]
                super().__delitem__( key )
                        
        def append( self, value ):
                self.count.append( 0 )
                super().append( value )
        
        def pop( self ):
                self.count.pop()
                return super().pop( )
                
        def remove( self, value ):
                key = super().index( value )
                del self.count[ key ]
                super().remove( value )
                
        def insert( self, key, value ):
                self.count.insert( key, 0 )
                super().insert( key, value )
                
        def clear( self ):
                self.count.clear()
                super().clear()
                
        def reverse( self ):
                self.count.reverse()
                super().reverse()

参考链接:python魔法方法-自定义序列
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2017-8-23 16:24:17 | 显示全部楼层
可以有想法是好事
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-12-22 17:05

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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