oc35--自定义构造方法
Posted 672530440
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oc35--自定义构造方法相关的知识,希望对你有一定的参考价值。
// // Person.h #import <Foundation/Foundation.h> @interface Person : NSObject @property int age; @property NSString *name; /* 自定义构造方法: 其实就是自定义一个init方法 1.一定是对象方法 2.一定返回id/instancetype 3.方法名称一定以init开头 */ - (instancetype)initHwwAge:(int)age; // 一个类可以有0个或者多个自定义构造方法 - (instancetype)initWithName:(NSString *)name; // 自定义构造方法可以有1个或多个参数 - (instancetype)initWithAge:(int)age andName:(NSString *)name; @end
// // Person.m #import "Person.h" @implementation Person - (instancetype)init { if (self = [super init]) { _age = 10; } return self; } - (NSString *)description { return [NSString stringWithFormat:@"age = %i, name = %@", _age, _name]; } - (instancetype)initHwwAge:(int)age { if (self = [super init]) { _age = age; } return self; } - (instancetype)initWithName:(NSString *)name { if (self =[super init]) { _name = name; } return self; } - (instancetype)initWithAge:(int)age andName:(NSString *)name { if (self = [super init]) { _age = age; _name = name; } return self; } @end
// // main.m // 自定义构造方法 #import <Foundation/Foundation.h> #import "Person.h" int main(int argc, const char * argv[]) { Person *p9 = [Person new];//_age=10,_name=nil Person *p8 = [[Person alloc] init]; p8.age = 20;//_age=10,_name=nil Person *p7 = [[Person alloc] initHwwAge:20];//_age=20,_name=nil Person *p6 = [[Person alloc] initWithName:@"lnj"];//_age=0,[email protected]"lnj" Person *p5 = [[Person alloc] initWithAge:20 andName:@"lnj"];//_age=20,[email protected]"lnj" NSLog(@"%@", p5); Person *p4 = [[Person alloc] init]; p4.age = 30;//_age=30,_name=nil Person *p3 = [[Person alloc] initHwwAge:30];//_age=30,_name=nil Person *p23 = [[Person alloc] initWithName:@"lmj"];//_age=0,[email protected]"lmj" Person *p2 = [[Person alloc] initWithAge:30 andName:@"lmj"];//_age=30,[email protected]"lmj" NSLog(@"%@", p2); return 0; }
以上是关于oc35--自定义构造方法的主要内容,如果未能解决你的问题,请参考以下文章
创建一个叫做机动车的类: 属性:车牌号(String),车速(int),载重量(double) 功能:加速(车速自增)减速(车速自减)修改车牌号,查询车的载重量。 编写两个构造方法:一个没有(代码片段