我有一个超类和子类,这两个定义实例变量。
超类的粗略轮廓:
/* GenericClass.h */
@interface GenericClass : NSObject {
/* some variables */
}
@end
/* GenericClass.m */
@implementation GenericClass
/* ... */
@end
子类概况:
/* SpecificClass.h */
#import "GenericClass.h"
@interface SpecificClass : GenericClass {
NSMutableString *str;
}
/* SpecificClass.m */
#import "SpecificClass.h"
@implementation SpecificClass
- (void)aMethod {
//Debugger reports str as out of scope
str = [[NSMutableString alloc] initWithCapacity:100];
//Works fine:
self->str = [[NSMutableString alloc] initWithCapacity:100];
//Doesn't compile as I haven't defined @property/@synthesize:
self.str = [[NSMutableString alloc] initWithCapacity:100];
}
当我使用直接从NSObject的继承类,一个不需要自我>指针。 请注意,是与父GenericClass定义的名称海峡没有对象。 所以,我的问题是,为什么STR超出范围时,没有自我> STR引用? 在本身的代码工作,但我不能与调试器读取变量