📜  python 结构,如 c - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:10.787000             🧑  作者: Mango

代码示例1
class test(object):
    __slots__ = ['a', 'next']

x = test()
x.next = x
x.a = 42