A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

【要求】创建一个学生对象,要求快速创建,并初始化年龄为指定的值

例如:在student类实现中,自定义以下两个方法:
  1. //初始化年龄
  2. -(instancetype)initWithAge:(int)age{
  3.     if (self = [super init]) {
  4.         self.age = age;
  5.     }
  6.     return self;
  7. }

  8. +(instancetype)studentWithAge:(int) age{
  9.     //快速创建对象,并管理内存
  10.     return [[[Student alloc] initWithAge:age]autorelease];
  11. }
  12. -(void)dealloc{
  13.    
  14.     NSLog(@"This Student dead....");
  15.     [super dealloc];
  16. }
复制代码

在main.m文件中
  
  1. @autoreleasepool {
  2.         Student *st = [Student studentWithAge:24];
  3.         NSLog(@"student age = %d",st.age);
  4.     }
复制代码

打印结果:
2015-10-06 21:51:18.087 MRCDemo[3265:303] student age= 24
2015-10-06 21:51:18.089 MRCDemo[3265:303] This Studentdead....
2015-10-06 21:51:18.090 MRCDemo[3265:303] This persondead....

3 个回复

倒序浏览
挺好的,复习了一下啊!
回复 使用道具 举报
学习啦!!!
回复 使用道具 举报
开始学习OC了,很有用
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马