我一直在查看 Codility 测试(http://codility.com/),因为我正在考虑尝试获得证书,但我遇到了一些非常奇怪的语法错误,它似乎使用了一点不同版本的 Objective-C 到 iOS。
例如,要完成的函数声明如下:
int equi (NSMutableArray *A) { //.... }
与
-(int)equi:(NSMutableArray *)A { //... }
当我声明以下for
循环时(A
是一个数组NSNumber
):
12. for (int i = 0; i < [A count]; i++){
13. total = total + [[A objectAtIndex:i] intValue];
14. }
它给了我以下编译错误:
func.m:12: error: 'for' loop initial declarations are only allowed in C99 mode
func.m:12: note: use option -std=c99 or -std=gnu99 to compile your code
func.m:13: error: invalid operands to binary + (have 'double' and 'id')
如果有人可以对此有所了解,那么可能是objective-c的版本或编译器版本不同吗?
谢谢
编辑:来自 Codility 的@Kos 在下面评论说,他们最近将他们的 Objective-C 编译器切换到了 Clang,这应该意味着我问的大多数问题现在都不是问题了。