当前位置:网站首页>关于静态类型、动态类型、id、instancetype
关于静态类型、动态类型、id、instancetype
2022-07-06 11:02:00 【InfoQ】
静态类型
- 一个指针变量定义为特定的对象时,使用的是静态类型,在编译的时候就知道这个指针变量所属的类,这个变量总是存储特定类的对象,默认情况下所有的数据类型都是静态数据类型
@interface Person : NSObject
property (nonatomic,strong) NSString *name;
-(void)run;
@end
@implementation Person
-(void)run{
NSLog(@"run");
}
@end
int main(int argc, const char * argv[]) {
Person *p = [[Person alloc]init];
p.name = @"ABC";
[p run];
return 0;
}
- 静态数据类型的特点:
- 在编译的时候就知道变量的类型
编译时就知道p是Person类型
- 知道变量中有哪些属性和方法
@property (nonatomic,strong) NSString *name;
-(void)run;
- 在编译的时候就可以访问这些属性和方法
p.name = @"ABC";
[p run];
- 并且如果是通过静态数据类型定义变量,如果访问了不属于静态数据类型的属性和方法,那么编译器就会报错
动态类型
- 指程序直到执行时才确定对象所属的类
@interface Person : NSObject
@property (nonatomic,strong) NSString *name;
-(void)run;
@end
@implementation Person
-(void)run{
NSLog(@"run");
}
-(void)test{
NSLog(@"test");
}
@end
@interface Student : Person
@property (nonatomic,assign) int age;
-(void)eat;
@end
@implementation Student
-(void)eat{
NSLog(@"eat");
}
@end
int main(int argc, const char * argv[]) {
id obj1 = [[Person alloc]init];
[obj1 run];
id obj2 = [[Student alloc]init];
[obj2 eat];
return 0;
}
- 动态数据类型的特点:
- 在编译的时候编译器并不知道变量的真实类型,只有在运行的时候才知道它的真实类型
id obj1 = [[Person alloc]init];
id obj2 = [[Student alloc]init];
id
类型与
instancetype
id
类型
id
是一种通用的对象类型,它可以指向属于任何类的对象,可理解为万用指针,相当于C语言的void*
数据类型,id
也是一个动态数据类型,可以用来定义变量,作为函数参数,作为函数返回值等等
id == NSObject*
(万能指针)
NSObject*
是一个静态类型
- 由于动态数据类型可以调用任意方法,所以有可能调用到不属于自己的方法,而编译时又不报错,所以导致运行时错误
- 使用场景:多态,可以减少代码量,避免调用子类特有的方法需要强制类型转化
- id类型不能使用点语法,因为点语法是编译器的特性,而id类型是运行时的特性
- 尽量使用静态类型,静态类型可以更早的发现错误,提高可读性
instancetype
instancetype
在编译时就可以判断对象的真实类型
instancetype
只能用于返回值
- 自定义的构造方法,返回值尽量使用
instancetype
,不要用id
边栏推荐
- UFIDA OA vulnerability learning - ncfindweb directory traversal vulnerability
- celery最佳实践
- C#/VB.NET 给PDF文档添加文本/图像水印
- Certains marchés de l'emploi de Shanghai refusent d'embaucher des personnes qui se rétablissent positives à Xinguan
- [sword finger offer] 60 Points of N dice
- Reproduce ThinkPHP 2 X Arbitrary Code Execution Vulnerability
- Jdbc driver, c3p0, druid and jdbctemplate dependent jar packages
- Understanding disentangling in β- VAE paper reading notes
- 能源行业的数字化“新”运维
- 监控界的最强王者,没有之一!
猜你喜欢
Jushan database was among the first batch of financial information innovation solutions!
Optical blood pressure estimation based on PPG and FFT neural network [translation]
Deep circulation network long-term blood pressure prediction [translation]
Solve DoS attack production cases
Method of accessing mobile phone storage location permission under non root condition
[depth first search] Ji suanke: Square
SQL injection - access injection, access offset injection
A wearable arm device for night and sleeveless blood pressure measurement [translation]
Implementation of AVL tree
287. Find duplicates
随机推荐
Stm32+esp8266+mqtt protocol connects onenet IOT platform
Tree-LSTM的一些理解以及DGL代码实现
Visual Studio Code启动时提示“Code安装似乎损坏。请重新安装。”、标题栏显示“不受支持”信息的解决办法
[sword finger offer] 60 Points of N dice
Cobra quick start - designed for command line programs
用于远程医疗的无创、无袖带血压测量【翻译】
复现Thinkphp 2.x 任意代码执行漏洞
Medical image segmentation
Interpreting cloud native technology
深度循环网络长期血压预测【翻译】
图片缩放中心
上海部分招工市場對新冠陽性康複者拒絕招錄
Blue Bridge Cup real question: one question with clear code, master three codes
基于ppg和fft神经网络的光学血压估计【翻译】
POJ 2208 已知边四面体六个长度,计算体积
【中山大学】考研初试复试资料分享
celery最佳实践
Stm32+hc05 serial port Bluetooth design simple Bluetooth speaker
Online notes
测试行业的小伙伴,有问题可以找我哈。菜鸟一枚~