1

使用 Python 考虑以下数据类:

from dataclasses import dataclass

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

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

4

0 回答 0