2017-6-7

aprilthirty60

Table of Contents

─────────────────

1 type 和 metaclass

2 type

3 type dynamic crate

4 meta programming

5 desciptor

6 垃圾回收算法

7 lazy property

8 slots 的拦截

9 faster attribute access.

10 space savings in memory

1 type 和 metaclass

═══════════════════

meta programming 起源于 lisp,伟大的 macro 能在运行时改变程序的执行,

python 的源编程没这么强,但也很不错。

2 type

══════

┌────

│ def choose_class(name):

│     if name == 'foo':

│         class Foo(object):

│             pass

│         return Foo  # 返回的是类,不是类的实例

│     else:

│         class Bar(object):

│             pass

│     return Bar

│ obj = choose_class('foo')

│ print(obj)

│ obj = choose_class('xx')

│ print(obj)

└────

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

.Foo'>

'__main__.choose_class..Bar'>

3 type dynamic crate

════════════════════

┌────

│ class Dog:

│     pass

│ Person = type('Person',(),{})

│ print(Dog,Person)

│ print('*'*100)

│ Person = type('Person',(),{'name':'zhangsan','age':10})

│ print(Person.name,Person.age)

│ print('*'*100)

│ Person = type('Person',(object,),{'name':'zhangsan','age':10})

│ print(Person.__mro__)

│ print('*'*100)

│ def yi(self):

│     print('衣......')

│ '''

│     attribute and method is equel in grammer,and type of object theroy

│ '''

│ Person = type('Person',(object,),{'name':'zhangsan','age':10,'yi':yi})

│ p = Person()

│ p.yi()

│ print(hasattr(Person,'name'))

│ print(hasattr(Person,'name1111'))

│ print(hasattr(Person,'yi'))

│ Person.yi(1)

│ class Dog:

│     def __init__(self):

│         self.name = 'xx'

│     def eat(self):

│         print('eat.......')

│         #print(self.name)

│ d = Dog()

│ d.eat()

│ Dog.eat(1111)

└────

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――


****************************************************************************************************

zhangsan 10

****************************************************************************************************

(, )

****************************************************************************************************

衣…… True False True衣…… eat……. eat…….

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

4 meta programming

══════════════════

┌────

│ def upper_attr(future_class_name, future_class_parents, future_class_attr):

│     print(future_class_name,future_class_parents,future_class_attr)

│     # 遍历属性字典,把不是__开头的属性名字变为大写

│     newAttr = {}

│     for name, value in future_class_attr.items():

│         if not name.startswith("__"):

│             newAttr[name.upper()] = value

│     # 调用 type 来创建一个类

│     return type(future_class_name, future_class_parents, newAttr)

│ class Foo(object, metaclass=upper_attr):

│     bar = 'bip'

│     def haha(self):

│         pass

│ print(hasattr(Foo, 'bar'),hasattr(Foo, 'BAR'))

│ print(Foo().BAR)

│ class UpperAttrMetaClass(type):

│     # 这里,创建的对象是类,希望能够自定义它,所以这里改写__new__

│     # 还有一些高级的用法会涉及到改写__call__特殊方法,但是这里不用

│     def __new__(cls, future_class_name, future_class_parents, future_class_attr):

│         #遍历属性字典,把不是__开头的属性名字变为大写

│         newAttr = {}

│         for name,value in future_class_attr.items():

│             if not name.startswith("__"):

│                 newAttr[name.upper()] = value

│         # 方法 1:通过'type'来做类对象的创建

│         # return type(future_class_name, future_class_parents, newAttr)

│         # 方法 2:复用 type.__new__方法

│         # 这就是基本的 OOP 编程,没什么魔法

│         # return type.__new__(cls, future_class_name, future_class_parents, newAttr)

│         # 方法 3:使用 super 方法

│         return super(UpperAttrMetaClass, cls).__new__(cls, future_class_name, future_class_parents, newAttr)

│ class Foo(object, metaclass = UpperAttrMetaClass):

│     bar = 'bip'

│ print(hasattr(Foo, 'bar'),hasattr(Foo, 'BAR'))

│ print(Foo().BAR)

└────

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――


****************************************************************************************************

zhangsan 10

****************************************************************************************************

(, )

****************************************************************************************************

衣…… True False True衣…… eat……. eat…….

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

还有一些

[http://python-3-patterns-idioms-test.readthedocs.io/en/latest/Metaprogramming.html]

5 desciptor

═══════════

In general, a descriptor is an object attribute with“binding

behavior”, one whose attribute access has been overridden by methods

in the descriptor protocol. Those methods are __get__(), __set__(),

and __delete__(). If any of those methods are defined for an object,

it is said to be a descriptor. The default behavior for attribute

access is to get, set, or delete the attribute from an object’s

dictionary. For instance, a.x has a lookup chain starting with

a.__dict__['x'], then type(a).__dict__['x'], and continuing through

the base classes of type(a) excluding metaclasses. If the looked-up

value is an object defining one of the descriptor methods, then Python

may override the default behavior and invoke the descriptor method

instead. Where this occurs in the precedence chain depends on which

descriptor methods were defined. Note that descriptors are only

invoked for new style objects or classes (a class is new style if it

inherits from object or type). Descriptors are a powerful, general

purpose protocol. They are the mechanism behind properties, methods,

static methods, class methods, and super(). They are used throughout

Python itself to implement the new style classes introduced in version

2.2. Descriptors simplify the underlying C-code and offer a flexible

set of new tools for everyday Python programs.

descriptors are invoked by the __getattribute__ method overriding

__getattribute__ prevents automatic descriptor calls __getattribute__

is only available with new style classes and objects

object.__getattribute__ and type.__getattribute__ make different calls

to __get__. data descriptors always override instance dictionaries.

non-data descriptors may be overridden by instance dictionaries.

┌────

│ def __getattribute__(self, key):

│     "Emulate type_getattro() in Objects/typeobject.c"

│     v = object.__getattribute__(self, key)

│     if hasattr(v, '__get__'):

│        return v.__get__(None, self)

│     return v

└────

像属性(property), 方法(bound 和 unbound method), 静态方法和类方法都是

基于描述器协议的。

[http://pyzh.readthedocs.io/en/latest/Descriptor-HOW-TO-Guide.html]

6 垃圾回收算法

══════════════

python 的垃圾回收算法主要是引用计数和垃圾回收如国遇到

┌────

│ a =list(range(100000000000))

│ gc.get_referrers(q)

│ del a

└────

7 lazy property

═══════════════

8 slots 的拦截

══════════════

Smalltalk just has the slots. Slots are easier to optimize and make

fast with a JIT VM. If you need a class to have the functionality of

a Hashtable, you just put a Dictionary into an instance variable.

(Then you have to write some plumbing code, which is not so

convenient.) just like descriptor

[https://stackoverflow.com/questions/472000/usage-of-slots] The

special attribute __slots__ allows you to explicitly state which

instance attributes you expect your object instances to have, with

the expected results:

faster attribute access. space savings in memory.

The space savings is from

Storing value references in slots instead of __dict__. Denying

__dict__ and __weakref__ creation if parent classes deny them and you

declare __slots__.

9 faster attribute access.

══════════════════════════

┌────

│ import timeit

│ class Foo(object): __slots__ = 'foo',

│ class Bar(object): pass

│ slotted = Foo()

│ not_slotted = Bar()

│ def get_set_delete_fn(obj):

│     def get_set_delete():

│         obj.foo = 'foo'

│         obj.foo

│         del obj.foo

│     return get_set_delete

│ print(min(timeit.repeat(get_set_delete_fn(slotted))))

│ print(min(timeit.repeat(get_set_delete_fn(not_slotted))))

└────

――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――

0.23086228701868095 0.24860157998045906

10 space savings in memory

══════════════════════════

The default can be overridden by defining __slots__ in a new-style

class definition. The __slots__ declaration takes a sequence of

instance variables and reserves just enough space in each instance to

hold a value for each variable. Space is saved because __dict__ is not

created for each instance. SQLAlchemy attributes a lot of memory

savings with __slots__. To verify this, using the Anaconda

distribution of Python 2.7 on Ubuntu Linux, with guppy.hpy (aka heapy)

and sys.getsizeof, the size of a class instance without __slots__

declared, and nothing else, is 64 bytes. That does not include the

__dict__. Thank you Python for lazy evaluation again, the __dict__ is

apparently not called into existence until it is referenced, but

classes without data are usually useless. When called into existence,

the __dict__ attribute is a minimum of 280 bytes additionally. In

contrast, a class instance with __slots__ declared to be () (no data)

is only 16 bytes, and 56 total bytes with one item in slots, 64 with

two. I tested when my particular implementation of dicts size up by

enumerating alphabet characters into a dict, and on the sixth item it

climbs to 1048, 22 to 3352, then 85 to 12568 (rather impractical to

put that many attributes on a single class, probably violating the

single responsibility principle there.) attrs __slots__ no slots

declared + __dict__ none 16 64 (+ 280 if __dict__ referenced) one 56

64 + 280 two 64 64 + 280 six 96 64 + 1048 22 224 64 + 3352

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,585评论 18 139
  • **2014真题Directions:Read the following text. Choose the be...
    又是夜半惊坐起阅读 9,355评论 0 23
  • 文/洛小简 从晨风沐到午后静听破空声爬山虎的脚印点点滴滴 滴着斑痕 夜色揽过山林沉默似冷眸春的味道 在或不在悲...
    洛小简阅读 237评论 0 2
  • 从今天开始 忘掉昨日的忧伤 伤也好,痛也罢 随昨夜的晚风吹走 今天的朝阳 展开新的画卷 从今天开始 许下善良的心愿...
    海曲三少阅读 442评论 0 0
  • 0.1 可能你以为一切都在变质,同情心的缺失,人群的冷漠,但可能很多情况下,他们只是在内心做足了挣扎与斗争。 礼拜...
    左左左左左左屿阅读 332评论 2 4