class_self-1.m
来自「用于进行gcc测试」· M 代码 · 共 66 行
M
66 行
/* Contributed by Nicola Pero - Fri Oct 26 22:39:32 BST 2001 */#include <objc/objc.h>/* Test calling a class method when there is an instance method with conflicting types *//* This class should be unused but on broken compilers its instance method might get picked up and used instead of the class method of another class ! */struct d{ int a;};@interface UnusedClass{ Class isa;}- (struct d) method;@end@implementation UnusedClass- (struct d) method{ struct d u; u.a = 0; return u;}@end/* The real class */@interface TestClass{ Class isa;}+ (void) test;+ (int) method;@end@implementation TestClass+ (void) test{ if ([self method] != 4) { abort (); }}+ (int) method{ return 4;}#ifdef __NEXT_RUNTIME__ + initialize { return self; }#endif@endint main (void){ [TestClass test]; return 0;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?