类内返回类型

时间:2018-08-15 12:01:55

标签: python python-3.6 type-hinting

class Test:
    @staticmethod
    def im_ecstatic() -> Test:
        return Test()

给予:NameError: name 'Test' is not defined

即使该方法不是静态的,我也会遇到相同的错误。

是否可以为此类函数的返回类型提供类型提示?还是我应该通过其他方式暗示返回类型?

0 个答案:

没有答案