请阅读下面的程序 @implementation Person - (void)eat { NSLog(@”Person---eat”); } @end @implementation Person (FF) - (void)eat { NSLog(@”Person分类---eat”); } @end int main(int argc, const char * argv[]) { @autoreleasepool { Person *p = [[Person alloc] init]; [p eat]; } return 0; } 下列关于程序运行结果的描述,正确的是()。 A. Person分类---eat B. Person---eat C. Person---eat ,Person分类---eat D. 没有输出结果。