Python数据类递归定义

时间:2019-04-18 22:04:11

标签: python python-3.7 python-dataclasses

使用Python考虑以下数据类:

from dataclasses import dataclass

@dataclass()
class Foo: 
    some_id: int
    name: str
    child: Foo  # <-- failure here

此递归定义的正确语法是什么?

0 个答案:

没有答案