Python 板


LINE

※ 引述《xinu (xinu)》之铭言: : 请问一下在python里 : 有办法藉由class里的某个member(attribute) : 就找到该Class吗? : 假设c里面是这样写的话 : struct A { : .... : .... : int a; //certain member : }; : struct A a; : void *ptr = &a.a; : ptr= ptr - ((struct A *)0)->a; : ptr这时候会等於 &a; : 这样子的暴力手段python有办法实作出来吗? : 或是有什麽其他替代方案? 我看introspection里好像没提到这段... python object 里的 attr 都是 reference , 所以有可能多个 object 的某 attr 都指向同一个 reference . 这一点与 C 有很大的不同. 硬要做到这种功能不是不行,底下是用间接的方法列举 object 来找. 因为我找不到 python 有类似 ruby 的 ObjectSpace 功能,所以自己做一个. import weakref ObjectSpace = {} class OSObject: @classmethod def contain_of(cls, target, attr): os_cls = ObjectSpace.setdefault(cls, []) # # clean up invalid objects # os_cls[:] = [ obj for obj in os_cls if obj() ] objs = [obj() for obj in os_cls if obj() and target is getattr(obj(), attr) ] return objs def os_store(self): cls = self.__class__ os_cls = ObjectSpace.setdefault(cls, []) os_cls.append(weakref.ref(self)) def __init__(self, array): self.os_store() self.array = array if __name__ == '__main__': target1 = [1, 2, 3] target2 = [4, 5, 6] target3 = [7, 8, 9] a = OSObject(target1) b = OSObject(target2) c = OSObject(target1) print "object a: ", a print "object b: ", b print "object c: ", c print "find objects which contain target1 as attribute 'array'" print OSObject.contain_of(target1, "array") print "find objects which contain target2 as attribute 'array'" print OSObject.contain_of(target2, "array") print "find objects which contain target3 as attribute 'array'" print OSObject.contain_of(target3, "array") result: object a: <__main__.OSObject instance at 0x81b1d4c> object b: <__main__.OSObject instance at 0x81bcd8c> object c: <__main__.OSObject instance at 0x81bcdac> find objects which contain target1 as attribute 'array' [<__main__.OSObject instance at 0x81b1d4c>, # a <__main__.OSObject instance at 0x81bcdac>] # c find objects which contain target2 as attribute 'array' [<__main__.OSObject instance at 0x81bcd8c>] # b find objects which contain target3 as attribute 'array' [] # None --



※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 140.113.23.204
1F:推 xinu:Thanks..又学到了新招~ 08/06 23:25







like.gif 您可能会有兴趣的文章
icon.png[问题/行为] 猫晚上进房间会不会有憋尿问题
icon.pngRe: [闲聊] 选了错误的女孩成为魔法少女 XDDDDDDDDDD
icon.png[正妹] 瑞典 一张
icon.png[心得] EMS高领长版毛衣.墨小楼MC1002
icon.png[分享] 丹龙隔热纸GE55+33+22
icon.png[问题] 清洗洗衣机
icon.png[寻物] 窗台下的空间
icon.png[闲聊] 双极の女神1 木魔爵
icon.png[售车] 新竹 1997 march 1297cc 白色 四门
icon.png[讨论] 能从照片感受到摄影者心情吗
icon.png[狂贺] 贺贺贺贺 贺!岛村卯月!总选举NO.1
icon.png[难过] 羡慕白皮肤的女生
icon.png阅读文章
icon.png[黑特]
icon.png[问题] SBK S1安装於安全帽位置
icon.png[分享] 旧woo100绝版开箱!!
icon.pngRe: [无言] 关於小包卫生纸
icon.png[开箱] E5-2683V3 RX480Strix 快睿C1 简单测试
icon.png[心得] 苍の海贼龙 地狱 执行者16PT
icon.png[售车] 1999年Virage iO 1.8EXi
icon.png[心得] 挑战33 LV10 狮子座pt solo
icon.png[闲聊] 手把手教你不被桶之新手主购教学
icon.png[分享] Civic Type R 量产版官方照无预警流出
icon.png[售车] Golf 4 2.0 银色 自排
icon.png[出售] Graco提篮汽座(有底座)2000元诚可议
icon.png[问题] 请问补牙材质掉了还能再补吗?(台中半年内
icon.png[问题] 44th 单曲 生写竟然都给重复的啊啊!
icon.png[心得] 华南红卡/icash 核卡
icon.png[问题] 拔牙矫正这样正常吗
icon.png[赠送] 老莫高业 初业 102年版
icon.png[情报] 三大行动支付 本季掀战火
icon.png[宝宝] 博客来Amos水蜡笔5/1特价五折
icon.pngRe: [心得] 新鲜人一些面试分享
icon.png[心得] 苍の海贼龙 地狱 麒麟25PT
icon.pngRe: [闲聊] (君の名は。雷慎入) 君名二创漫画翻译
icon.pngRe: [闲聊] OGN中场影片:失踪人口局 (英文字幕)
icon.png[问题] 台湾大哥大4G讯号差
icon.png[出售] [全国]全新千寻侘草LED灯, 水草

请输入看板名称,例如:Soft_Job站内搜寻

TOP