似乎在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')
我可以让这段代码工作吗?