具有不完整类型目标

具有不完整类型目标

本文介绍了具有不完整类型目标 C 的变量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试将枚举作为方法签名的一部分,但在我的 .h 文件中出现了这个可怕的错误:

I'm trying to have an enum as part of my method signature and I get this hideous error in my .h file:

Declaration of 'enum CacheFile' will not be visible outside this function

我的 h 文件中有这个:

I have this in my h file :

 @interface DAO : NSObject

    typedef enum {
        DEFAULT_CACHE_FILE,
        WEB_CACHE_FILE
    } CacheFile;

    -(NSMutableArray *) parseFile :(enum CacheFile) file;



@end

我的 .m 文件:

-(NSMutableArray *) parseFile:(CacheFile) file{
.....
....
}

我在我的 m 文件中收到了这个警告:

And I get this warning in my m file :

Conflicting Parameter types in implementation of 'parseFile:':'enum CacheFile' vs 'CacheFile'

我做错了什么?

推荐答案

将 enum 声明移到 @interface 之外,将其更新为正确的 Objective-C enum idiom(单独的 typedef)并修复方法声明:

Move the enum declaration outside of the @interface, update it to proper Objective-C enum idiom (separate typedef) and fix the method declaration:

enum {
   DEFAULT_CACHE_FILE,
   WEB_CACHE_FILE
};

typedef unsigned long CacheFile;

@interface DAO : NSObject
   -(NSMutableArray *) parseFile:(CacheFile) file;
@end

这篇关于具有不完整类型目标 C 的变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 19:03