当前位置:网站首页>OC中new和init的区别
OC中new和init的区别
2022-08-02 02:23:00 【~废弃回忆 �༄】
OC中new和init的区别
我们重写一下一个新类的init方法:
- (instancetype)init {
self = [super init];
if (self != nil) {
NSLog(@"1");
}
return self;
}
- (instancetype)initWithName {
self = [super init];
if (self != nil) {
NSLog(@"2");
}
return self;
}
主函数:
Person *per = [[Person alloc] initWithName];
Person *per2 = [Person new];
输出:
2
1
new调用只会走1。
结论:
1.子类没有重写 init方法, new调用父类 init 方法
2.子类重写 init方法, new调用子类 init 方法
3.子类重写 init方法并自定义init方法 new的话不会调用,所以alloc + init更为灵活一些,扩展性好
边栏推荐
- 数值积分方法:欧拉积分、中点积分和龙格-库塔法积分
- LeetCode brush diary: LCP 03. Machine's adventure
- PHP live source code to achieve simple barrage effect related code
- 列表常用方法
- Simple example of libcurl accessing url saved as file
- Garbage Collector CMS and G1
- [LeetCode Daily Question] - 103. Zigzag Level Order Traversal of Binary Tree
- 2022-08-01 反思
- [Unity entry plan] 2D Game Kit: A preliminary understanding of the composition of 2D games
- Lombok
猜你喜欢

接口测试神器Apifox究竟有多香?

Oracle19c安装图文教程

Win Go development kit installation configuration, GoLand configuration

yaml

Good News | AR opens a new model for the textile industry, and ALVA Systems wins another award!

用位运算为你的程序加速

BioVendor人俱乐部细胞蛋白(CC16)Elisa试剂盒研究领域

【LeetCode每日一题】——704.二分查找

【Unity入门计划】2D Game Kit:初步了解2D游戏组成

Analysis of volatile principle
随机推荐
2022年NPDP考完多久出成绩?怎么查询?
Lombok
使用docker安装mysql
FOFAHUB usage test
列表常用方法
Software testing Interface automation testing Pytest framework encapsulates requests library Encapsulates unified request and multiple base path processing Interface association encapsulation Test cas
[ORB_SLAM2] SetPose, UpdatePoseMatrices
Nanoprobes纳米探针丨Nanogold偶联物的特点和应用
Handwriting a blogging platform ~ the first day
项目后台技术Express
BioVendor Human Club Cellular Protein (CC16) Elisa Kit Research Fields
Redis 底层的数据结构
永磁同步电机36问(二)——机械量与电物理量如何转化?
TKU remembers a single-point QPS optimization (I wish ITEYE is finally back)
Pinduoduo leverages the consumer expo to promote the upgrading of domestic agricultural products brands and keep pace with international high-quality agricultural products
51. 数字排列
BI-SQL丨WHILE
Oracle19c安装图文教程
Rasa 3 x learning series - Rasa - 4873 dispatcher Issues. Utter_message study notes
PHP uses PHPRedis and Predis