gpt4 book ai didi

objective-c - Cocoa - 导入头文件时出错

转载 作者:行者123 更新时间:2023-12-03 17:58:39 24 4
gpt4 key购买 nike

我正在一个包含多个类的项目中工作。将其中一个类导入另一个类时,会生成一个 fatal error ,指出:

error: expected specifier-qualifier-list before ' xxx '

xxx 是正在导入的 .h 文件中的最后一行,即

@interface
{ ..
..
xxx
}

知道这个错误意味着什么吗?谢谢!

最佳答案

@interface 中大括号中定义的实例变量至少应具有类型限定符。例如

@interface SomeClass : NSObject
{
NSString* xx;
// ^^^^^^^^^ declared type of xx
}
// methods
@end

此外,您的接口(interface)声明末尾缺少@end

关于objective-c - Cocoa - 导入头文件时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9890747/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com