Python面向对象学习资料汇总

Python的类型和对象系统

http://www.cafepy.com/article/python_types_and_objects/

Python对象的属性访问

http://www.cafepy.com/article/python_attributes_and_methods/

Python类与对象的实现机制

《Python源码剖析》第12章 Python虚拟机中的类机制
动态创建一个类需要:
  • 类名称
  • 基类的tuple
  • 一个字典,描述类的自定义属性

Python元编程

  • http://stackoverflow.com/questions/100003/what-is-a-metaclass-in-python 这里讲的非常清楚
  • https://www.ibm.com/developerworks/cn/views/linux/libraryview.jsp?type_by=%E6%8A%80%E6%9C%AF%E6%96%87%E7%AB%A0&view_by=search&search_by=Python+%E4%B8%AD%E7%9A%84%E5%85%83%E7%B1%BB%E7%BC%96%E7%A8%8B

你可能感兴趣的:(编程,c,虚拟机,python,attributes,Types)