为我工作。
// car.m
#import <Foundation/Foundation.h>
@interface Car : NSObject
+ (void)make;
@end
@interface Honda : Car
@end
@interface Porsche : Car
@end
@implementation Car
+ (void)make { NSLog(@"generic"); }
@end
@implementation Honda
+ (void)make { NSLog(@"Honda"); }
@end
@implementation Porsche
+ (void)make { NSLog(@"Porsche"); }
@end
int main() {
Porsche *porsche = [[Porsche alloc] init];
[[porsche class] make];
Car *supercar = (Car *)[[Honda alloc] init];
[[supercar class] make];
return 0;
}
并且编译和执行输出没有显示错误或警告。
$ clang -framework 基础 car.m -o car.o
$ ./car.o
2012-07-01 01:53:46.559 car.o[8127:707] 保时捷
2012-07-01 01:53:46.561 car.o[8127:707] 本田
你使用的是什么版本的 Xcode 和 GCC?是旧的 GCC 还是 LLVM-GCC?