gpt4 book ai didi

ios - objective-c 中的类扩展

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:06:56 25 4
gpt4 key购买 nike

我正在通过阅读一本书来学习 object-c。当我阅读关于类扩展的章节时,书中给出了以下示例代码:

// A class extension
@interface BNREmployee ()

@property (nonatomic) unsigned int officeAlarmCode;

@end

@implementation BNREmployee
...
@end

书上说 对象不是 BNREmployee 的实例无法再看到此属性 officeAlarmCode .举个例子:

BNREmployee *mikey = [[BNREmployee alloc] init];
unsigned int mikeysCode = mikey.officeAlarmCode;

此尝试将导致编译器错误,显示为“No visible @interface declares the instance method officeAlarmCode”。

但是我很困惑。我的意思是我觉得这本书的文字和它的示例代码是矛盾的。书上说对象不是 BNREmployee 的实例不能再看到属性officeAlarmCode .但是在上面的示例代码中,不是 mikey BNREmployee 的实例?为什么它看不到 officeAlarmCode事件它是 BNREmployee 的一个实例?

===更新=====

我正在看的书是this one .第 22 章,第 162 页。

我只是想验证这本书的解释是否具有误导性,我正在寻找一个明确的解释。因为书上说“NOT BNREmployee 实例的对象不能再看到属性 officeAlarmCode”,对于像我这样的书本读者,我觉得它暗示了 BNREmployee 实例的对象。 CAN SEE 属性(property) officeAlarmCode .这就是我感到困惑的原因,因为 mikeyBNREmployee 的实例但它无法访问 officeAlarmCode。

最佳答案

根据 Apple Docs1.类扩展可以给类添加自己的属性和实例变量2. 类扩展通常用于使用额外的私有(private)方法或属性扩展公共(public)接口(interface),以便在类本身的实现中使用。

因此,如果您在类扩展中声明该属性,它将仅对实现文件可见。喜欢

BNREmployee.m

@interface BNREmployee ()

@property (nonatomic) unsigned int officeAlarmCode;

@end

@implementation BNREmployee

- (void) someMethod {
//officeAlarmCode will be available inside implementation block to use
_officeAlarmCode = 10;
}
@end

如果您想在其他类中使用 officeAlarmCode,比如说 OtherEmployee 类,那么您需要在 BNREmployee.h 文件中创建具有只读或读写访问权限的 officeAlarmCode 属性。然后你可以像这样使用它

BNREmployee.h

@property (nonatomic, readOnly) unsigned int officeAlarmCode; //readOnly you can just read not write

OtherEmployee.m

import "BNREmployee.h"
@interface OtherEmployee ()

@property (nonatomic) unsigned int otherAlarmCode;

@end

@implementation OtherEmployee

您可以创建 BNREmployee 实例,并将 officeAlarmCode 值分配给 otherAlarmCode 属性,如下所示

BNREmployee *bnrEmployee = [BNREmployee alloc] init];
_otherAlarmCode = bnrEmployee.officeAlarmCode;

关于ios - objective-c 中的类扩展,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27963551/

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