NamedTuple Class with ABC mixin(使用ABC混合的命名元组类)
本文介绍了使用ABC混合的命名元组类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的问题如下:我想创建一个继承自tying.NamedTuple的类和抽象类中的另一个混合类。理想情况下,我希望这样做:
from typing import *
from abc import ABC, abstractmethod
class M(ABC):
@abstractmethod
def m(self, it: Iterable[str]) -> str:
pass
class N(NamedTuple, M):
attr1: str
def m(self, it):
return self.attr1 + it
当我现在尝试执行此操作时,收到以下错误:
TypeError: metaclass conflict: the metaclass of a derived class must be a (non-strict) subclass of the metaclasses of all its bases
我知道我可以这样做:
from typing import *
from abc import ABC, abstractmethod
class M(ABC):
@abstractmethod
def m(self, it: Iterable[str]) -> str:
pass
class NT(NamedTuple):
attr1: str
class N(NT, M):
def m(self, it):
return self.attr1 + it
但我不想这样做,因为它看起来有点粗俗,并且定义了我实际要使用的类数量的2倍。我还在寻找一种解决方案,理想地以某种方式更改M,而不是每次创建N时必须指定的内容。
推荐答案
您需要定义组合元类。在这种情况下,使其成为M
from typing import *
from abc import ABCMeta, abstractmethod
class NamedTupleABCMeta(ABCMeta, NamedTupleMeta):
pass
class M(metaclass=NamedTupleABCMeta):
@abstractmethod
def m(self, it: Iterable[str]) -> str:
pass
class N(NamedTuple, M):
attr1: str
def m(self, it):
return self.attr1 + it
这篇关于使用ABC混合的命名元组类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:使用ABC混合的命名元组类
猜你喜欢
- 分析异常:路径不存在:dbfs:/databricks/python/lib/python3.7/site-packages/sampleFolder/data; 2022-01-01
- 如何在 Python 的元组列表中对每个元组中的第一个值求和? 2022-01-01
- python check_output 失败,退出状态为 1,但 Popen 适用于相同的命令 2022-01-01
- pytorch 中的自适应池是如何工作的? 2022-07-12
- 如何将一个类的函数分成多个文件? 2022-01-01
- python-m http.server 443--使用SSL? 2022-01-01
- 如何在 python3 中将 OrderedDict 转换为常规字典 2022-01-01
- 沿轴计算直方图 2022-01-01
- 使用Heroku上托管的Selenium登录Instagram时,找不到元素';用户名'; 2022-01-01
- padding='same' 转换为 PyTorch padding=# 2022-01-01