引用与函数参数类型相同的类

时间:2017-11-19 02:46:10

标签: python python-3.x

似乎在Python 3中,我不能让一个类引用它自己:

NSString *str = @"\\\" \\\\ \\u26C4";
str = [NSJSONSerialization JSONObjectWithData:[[NSString stringWithFormat:@"\"%@\"", str] dataUsingEncoding:NSUTF8StringEncoding] options:NSJSONReadingAllowFragments error:nil];

Python给了我这个:

class A:
    def test(self, param: A):
            print('Hello World')

我可以让这段代码工作吗?

0 个答案:

没有答案