『流畅的Python』第9章_对象

一、Python风格

以一个二元素向量对象为例

import math
from array import array

class Vector2d:
    typecode = ‘d‘

    def __init__(self, x, y):
        self.x = float(x)
        self.y = float(y)

    def __iter__(self):
        # 使得Vector2d变成可迭代对象
        # __iter__方法的实现使得本类可以被转化为tuple在内的其他可迭代类
        return (i for i in (self.x, self.y))

    def __repr__(self):
        class_name = type(self).__name__  # type(self): <class ‘__main__.Vector2d‘>
        return ‘{}({!r},{!r})‘.format(class_name, *self)

    def __str__(self):
        return str(tuple(self))

    def __eq__(self, other):
        return tuple(self) == tuple(other)

    def __abs__(self):
        return math.hypot(self.x, self.y)

    def __bool__(self):
        return bool(abs(self))

    def __bytes__(self):
        """将Vector2d对象处理为二进制序列,格式我们自定"""
        # d:double类型数组
        return (bytes([ord(self.typecode)]) +
                bytes(array(self.typecode, self)))

    # —————备用析构方法——————
    @classmethod  # 类方法,cls表示类本身
    def frombytes(cls, octets):
        """对应于上面的方法,这里创建一个新的析构函数,使用特定的二进制序列构造Vector2d类实例"""
        typecode = chr(octets[0])
        memv = memoryview(octets[1:]).cast(typecode)
        return cls(*memv)  # 类名(参数),可见,类方法常用作备用析构

    # —格式化输出—
    def angle(self):
        # math.atan(scope)输入为tan值
        # math.atan2(y, x)输入为对应向量坐标(起点为原点)
        return math.atan2(self.y, self.x)

    def __format__(self, fmt_spec=‘‘):
        """格式化输出,如果格式末尾为p则输出极坐标,
        输入其他格式为数字型格式,一个输入格式指定到两个数上,如:.3ep"""
        if fmt_spec.endswith(‘p‘):
            fmt_spec = fmt_spec[:-1]
            coords = (abs(self), self.angle())
            out_fmt = ‘<{}, {}>‘
        else:
            coords = self
            out_fmt = ‘({}, {})‘
        components = (format(c, fmt_spec) for c in coords)
        return out_fmt.format(*components)

此时这个对象支持大部分python操作,

if __name__ == ‘__main__‘:
    b = bytes(Vector2d(3, 4))
    print(Vector2d.frombytes(b))

    print(format(Vector2d(1, 1), ‘.5fp‘))

(3.0, 4.0)
<1.41421, 0.78540>

但是一个重要的方法还是没能实现,__hash__,这关乎到对象是否可以被存入字典进行高速读取的属性,实际上可以hash对象需要三个条件:

  1. 需要__hash__方法
  2. 需要__eq__方法(已经实现)
  3. 需要对象不可变  # 实例的散列值关乎查找等使用方式,绝对不可以变化

也就是我们指定v.x=1(v为class实例)会报错才行,这需要一些其他操作:

class Vector2d:
    typecode = ‘d‘

    def __init__(self, x, y):
        self.__x = float(x)
        self.__y = float(y)

    @property
    def x(self):
        return self.__x

    @property
    def y(self):
        return self.__y

    def __hash__(self):
        return hash(self.x) ^ hash(self.y)  

其他方法不需要修改,

v1 = Vector2d(3, 4)

v2 = Vector2d(3.1, 4.2)

print(hash(v1), hash(v2))

# 7 384307168202284039

二、类方法和静态方法

# —对比类方法和静态方法—
class Demo:
    @classmethod
    def klassmeth(*args):
        return args

    @ staticmethod
    def statmeth(*args):
        return args

    def normal(*args):
        return args

和实例方法不同,类方法第一个参数永远是类本身,所以常用于备用析构,静态方法没有默认的首位参数,测试如下:

print(Demo.klassmeth("hello"))
print(Demo.statmeth("hello"))
demo = Demo()
print(demo.normal("hello"))

# (<class ‘__main__.Demo‘>, ‘hello‘)
# (‘hello‘,)
# (<__main__.Demo object at 0x000000000289F978>, ‘hello‘)

三、私有属性和受保护属性

两个前导下划线"__",一个或者没有后置下划线的实例属性(self.属性名)为私有变量,会被存入__dict__中,且名称被改写为"_类名__属性名",主要目的是防止类被继承以后,子类实例的继承属性(未在子类中显式的声明)被错误的改写。

注意,__dict__不仅仅存储私有变量,实例属性均存放在__dict__中(默认情况下)。

四、__slots__类属性节约存储空间

class Vector2d:

    __slots__ = (‘__x‘, ‘__y‘)

    typecode = ‘d‘

类属性__slots__为一个存储字符串的可迭代对象,其中的各个字符串是不同的实例属性名,使用tuple是作者推荐的方式,因为可以保证信息不被改动。使用它可以有效节约存储空间,尤其是需要创建大量实例的时候(运行速度往往也更快)。

  1. 继承会自动忽略__slot__属性,所以子类需要显式的定义它
  2. 定义了__slots__后,用户不可以自行添加其他实例属性,但是如果把__dict__存储在__slots__中,就可以添加了,不过就完全没意义了……
  3. 如果想要支持弱引用,需要手动将__weakref__添加进来,虽然自定义class默认存在__weakref__属性,但是想要让实例成为弱引用目标还是需要添加进来才可以。

原文地址:https://www.cnblogs.com/hellcat/p/9220598.html

时间: 2024-11-14 14:18:15

『流畅的Python』第9章_对象的相关文章

『流畅的Python』第9章_符合Python风格的对象

Python风格对象 以一个二元素向量对象为例 import math from array import array class Vector2d: typecode = 'd' def __init__(self, x, y): self.x = float(x) self.y = float(y) def __iter__(self): # 使得Vector2d变成可迭代对象 # __iter__方法的实现使得本类可以被转化为tuple在内的其他可迭代类 return (i for i i

流畅的python第十四章可迭代的对象,迭代器和生成器学习记录

在python中,所有集合都可以迭代,在python语言内部,迭代器用于支持 for循环 构建和扩展集合类型 逐行遍历文本文件 列表推导,字典推导和集合推导 元组拆包 调用函数时,使用*拆包实参 本章涵盖的话题 语言内部使用 iter(...) 内置函数处理可迭代对象的方式如何使用 Python 实现经典的迭代器模式详细说明生成器函数的工作原理如何使用生成器函数或生成器表达式代替经典的迭代器如何使用标准库中通用的生成器函数如何使用 yield from 语句合并生成器案例分析:在一个数据库转换工

『Python』MachineLearning机器学习入门_极小的机器学习应用

一个小知识: 有意思的是,scipy囊括了numpy的命名空间,也就是说所有np.func都可以通过sp.func等价调用. 简介: 本部分对一个互联网公司的流量进行拟合处理,学习最基本的机器学习应用. 导入包&路径设置: import os import scipy as sp import matplotlib.pyplot as plt data_dir = os.path.join( os.path.dirname(os.path.realpath(__file__)), "..

流畅的python第十五章上下文管理器和else块学习记录

with 语句和上下文管理器for.while 和 try 语句的 else 子句 with 语句会设置一个临时的上下文,交给上下文管理器对象控制,并且负责清理上下文.这么做能避免错误并减少样板代码,因此 API 更安全,而且更易于使用.除了自动关闭文件之外,with 块还有很多用途 else 子句不仅能在 if 语句中使用,还能在 for.while 和 try 语句中使用 for 仅当 for 循环运行完毕时(即 for 循环没有被 break 语句中止)才运行 else 块.while 仅

『python』科学计算专项_科学绘图库matplotlib学习之绘制动画(待续)

示例代码 简单调用绘图 from matplotlib import pyplot as plt import matplotlib.animation as animation import numpy as np def update_point(num): fig_points.set_data(data[:, 0:num]) return fig_points, fig1 = plt.figure() num_point = 50 data = np.random.rand(2, num

『python』科学计算专项_科学绘图库matplotlib学习

思想:万物皆对象 作业 第一题: import numpy as np import matplotlib.pyplot as plt x = [1, 2, 3, 1] y = [1, 3, 0, 1] def plot_picture(x, y): plt.plot(x, y, color='r', linewidth='2', linestyle='--', marker='D', label='one') plt.xticks(list(range(-5,5,1))) plt.yticks

『python』科学计算专项_科学绘图库matplotlib学习(下)

基本的读取csv文件并绘制饼图 由于之前没有过实际处理的经验,所以这个程序还是值得一看,涉及了处理表格数据的基本方法: import matplotlib.pyplot as plt import pandas as pd # csv读取文件 data = pd.read_csv('OutOrder.csv',encoding='gb2312') # 每一列都兼容numpy的方法 a = data['方式'].values # 获取本列的内容的各种可能 typename = [] for i i

『Python』MachineLearning机器学习入门_效率对比

效率对比: 老生常谈了,不过这次用了个新的模块, 运行时间测试模块timeti: 1 import timeit 2 3 normal = timeit.timeit('sum(x*x for x in range(1000))', number=10000) 4 native_np = timeit.timeit('sum(na*na)', # 重复部分 5 setup="import numpy as np; na = np.arange(1000)", # setup只运行一次

Python语言及其运用_第六章_对象和类

[主要内容]主要总结书中关于类和对象的简单程序,用于说明类的基本使用方法 注意:6.类中变量的私有保护    9.魔术方法 [基本知识] 1.类的基本定义 1 class Person(): 2 def __init__(self,name): #初始化方法,注意类中方法的第一个参数为表示自身的self 3 self.name = name 4 hunter = Person("Elmer Fudd") 5 print(hunter.name) 2.继承 1 class Car():