博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
只用@property定义一个属性speed,子类不能直接用_speed,需要在interface的成员变量列表里写上_speed...
阅读量:5143 次
发布时间:2019-06-13

本文共 1140 字,大约阅读时间需要 3 分钟。

//写法一:@interface Person : NSObject{}@property (nonatomic, strong) NSString *name;@end@implementation Person@end//这个适用与一般情况,编译器自动生成成员变量_name,而且写法最简单,不必重复声明。//写法二,针对继承情况下,向子类暴露父类成员变量:@interface Person : NSObject{    NSString *_name;}@property (nonatomic, strong) NSString *name;@end@implementation Person@synthesize name = _name; // 这行可有可无@end

 

 

@interface Test : NSObject{   //NSString *_test; 这里也可以不写,不写的缺点是,某个子类继承了Test,会不能直接用_test属性}@property (nonatomic,copy)NSString *test;@end@implementation Test//@synthesize test = _test;系统帮你做了这件事,所以你不用写//@synthesize test = test_;如果你觉得前置_不可接受,想改成后置的,这里就得写一下@end这么写,原因1,简洁2,外界访问用 .test3,内部访问用_test,系统自动生成

 

写法一:
@interface Person : NSObject{
}@property (nonatomic, strong) NSString *name;@end@implementation Person@end
这个适用与一般情况,编译器自动生成成员变量_name,而且写法最简单,不必重复声明。
写法二,针对继承情况下,向子类暴露父类成员变量:
@interface Person : NSObject{	NSString *_name;}@property (nonatomic, strong) NSString *name;@end@implementation Person@synthesize name = _name;@end
作者:RefuseBT
链接:https://www.zhihu.com/question/22195598/answer/39593235
来源:知乎
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

转载于:https://www.cnblogs.com/ERICSUN12/p/5315381.html

你可能感兴趣的文章
Node.js 连接 MySQL
查看>>
那些年,那些书
查看>>
注解小结
查看>>
java代码编译与C/C++代码编译的区别
查看>>
Bitmap 算法
查看>>
转载 C#文件中GetCommandLineArgs()
查看>>
list control控件的一些操作
查看>>
绝望的第四周作业
查看>>
一月流水账
查看>>
npm 常用指令
查看>>
判断字符串在字符串中
查看>>
Linux环境下Redis安装和常见问题的解决
查看>>
HashPump用法
查看>>
cuda基础
查看>>
Vue安装准备工作
查看>>
oracle 创建暂时表
查看>>
201421410014蒋佳奇
查看>>
Xcode5和ObjC新特性
查看>>
LibSVM for Python 使用
查看>>
Centos 7.0 安装Mono 3.4 和 Jexus 5.6
查看>>