设计类-班级

1. 设计要求见.h文件。

Student.h
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #d12f1b}p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; min-height: 13.0px}p.p3 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo}p.p4 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px 'Heiti SC Light'; color: #008400}p.p5 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #008400}p.p6 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #703daa}p.p7 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #bb2ca2}span.s1 {font-variant-ligatures: no-common-ligatures; color: #78492a}span.s2 {font-variant-ligatures: no-common-ligatures}span.s3 {font-variant-ligatures: no-common-ligatures; color: #bb2ca2}span.s4 {font-variant-ligatures: no-common-ligatures; color: #703daa}span.s5 {font: 11.0px Menlo; font-variant-ligatures: no-common-ligatures}span.s6 {font-variant-ligatures: no-common-ligatures; color: #000000}span.s7 {font-variant-ligatures: no-common-ligatures; color: #4f8187}

#import <Foundation/Foundation.h>

@interface Student : NSObject

{
   NSString *_name;
   NSInteger _num;
   NSInteger _score;
   
}

//构造方法
-(id)initWithName:(NSString *)name number:(NSInteger)num score:(NSInteger)score;

//setter
-(void)setName:(NSString *)name;
-(void)setNum:(NSInteger)num;
-(void)setScore:(NSInteger)score;

//getter
-(NSString *)name;
-(NSInteger)num;
-(NSInteger)score;

//功能方法
-(BOOL)isSortByScore:(Student *)aStudent;
-(bool)isSortByNum:(Student *)aStudent;
-(NSComparisonResult)isSortByName:(Student *)aStudent;

-(void)printStudnent;

@end
MyClass.h
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #d12f1b}p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; min-height: 13.0px}p.p3 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo}p.p4 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #bb2ca2}span.s1 {font-variant-ligatures: no-common-ligatures; color: #78492a}span.s2 {font-variant-ligatures: no-common-ligatures}span.s3 {font-variant-ligatures: no-common-ligatures; color: #bb2ca2}span.s4 {font-variant-ligatures: no-common-ligatures; color: #703daa}span.s5 {font-variant-ligatures: no-common-ligatures; color: #4f8187}

#import <Foundation/Foundation.h>
#import "Student.h"

@interface MyClass : NSObject
{
   NSString *_className;
   NSMutableArray *_stuList;
}

-(id)initWithClassName:(NSString *)name;

-(void)setClassName:(NSString *)name;
-(NSString *)className;

-(void)addStudent:(Student *)astudent;
-(void)addStudent:(Student *)astudent atIndex:(NSInteger)index;
-(void)removeStudent:(Student *)astudent;
-(void)removeStudentAtIndex:(NSInteger)index;
-(void)replaceStudent:(Student *)astudent atIndex:(NSInteger)index;

-(void)showStuList;

-(void)sortedByNumber;
-(void)sortedByScore;
-(void)sortedByName;

+(void)testMyClass;

@end

2. .m实现文件(有问题)

Student.m
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #d12f1b}p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; min-height: 13.0px}p.p3 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #bb2ca2}p.p4 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px 'Heiti SC Light'; color: #008400}p.p5 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo}p.p6 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #008400}p.p7 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #703daa}span.s1 {font-variant-ligatures: no-common-ligatures; color: #78492a}span.s2 {font-variant-ligatures: no-common-ligatures}span.s3 {font-variant-ligatures: no-common-ligatures; color: #000000}span.s4 {font: 11.0px Menlo; font-variant-ligatures: no-common-ligatures}span.s5 {font-variant-ligatures: no-common-ligatures; color: #bb2ca2}span.s6 {font-variant-ligatures: no-common-ligatures; color: #703daa}span.s7 {font-variant-ligatures: no-common-ligatures; color: #4f8187}span.s8 {font-variant-ligatures: no-common-ligatures; color: #31595d}span.s9 {font-variant-ligatures: no-common-ligatures; color: #008400}span.s10 {font: 11.0px 'Heiti SC Light'; font-variant-ligatures: no-common-ligatures; color: #008400}span.s11 {font-variant-ligatures: no-common-ligatures; color: #3d1d81}

#import "Student.h"

@implementation Student
//构造方法
-(id)initWithName:(NSString *)name number:(NSInteger)num score:(NSInteger)score
{
   self = [super self];
   if (self) {
       _name=name;
       _num=num;
       _score=score;
   }
   return self;
}

//setter
-(void)setName:(NSString *)name
{
   _name=name;
}
-(void)setNum:(NSInteger)num
{
   _num=num;
}
-(void)setScore:(NSInteger)score
{
   _score=score;
}

//getter
-(NSString *)name
{
   return _name;
}
-(NSInteger)num
{
   return  _num;
}
-(NSInteger)score
{
   return _score;
}

//功能方法
-(BOOL)isSortByScore:(Student *)aStudent
{
   if ([self score]>[aStudent score]) {    //调用者分数>参数分数
       return YES;
   }
   else
       return NO;
}
-(bool)isSortByNum:(Student *)aStudent
{
   if ([self num]>[aStudent num]) {
       return YES;
   }
   else
       return NO;
}
-(NSComparisonResult)isSortByName:(Student *)aStudent
{
   return [[self name] compare:[aStudent name]];
}

-(void)printStudnent
{

   NSLog(@"name=%@, num=%li, score=%li",[self name],[self num],[self score]);
}
@end
MyClass.m
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #d12f1b}p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; min-height: 13.0px}p.p3 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #bb2ca2}p.p4 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo}p.p5 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #4f8187}p.p6 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #3d1d81}p.p7 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px 'Heiti SC Light'; color: #008400}span.s1 {font-variant-ligatures: no-common-ligatures; color: #78492a}span.s2 {font-variant-ligatures: no-common-ligatures}span.s3 {font-variant-ligatures: no-common-ligatures; color: #000000}span.s4 {font-variant-ligatures: no-common-ligatures; color: #bb2ca2}span.s5 {font-variant-ligatures: no-common-ligatures; color: #703daa}span.s6 {font-variant-ligatures: no-common-ligatures; color: #4f8187}span.s7 {font-variant-ligatures: no-common-ligatures; color: #3d1d81}span.s8 {font-variant-ligatures: no-common-ligatures; color: #008400}span.s9 {font: 11.0px 'Heiti SC Light'; font-variant-ligatures: no-common-ligatures; color: #008400}span.s10 {font-variant-ligatures: no-common-ligatures; color: #d12f1b}span.s11 {font: 11.0px 'Heiti SC Light'; font-variant-ligatures: no-common-ligatures}span.s12 {font-variant-ligatures: no-common-ligatures; color: #31595d}span.s13 {font: 11.0px Menlo; font-variant-ligatures: no-common-ligatures}span.s14 {font: 11.0px 'Heiti SC Light'; font-variant-ligatures: no-common-ligatures; color: #d12f1b}span.s15 {font-variant-ligatures: no-common-ligatures; color: #272ad8}

#import "MyClass.h"

@implementation MyClass

-(id)initWithClassName:(NSString *)name
{
   self=[super self];
   if (self) {
       _className=name;
   }
   return self;
}

-(void)setClassName:(NSString *)name
{
   _className=name;
}
-(NSString *)className
{
   return _className;
}

-(void)addStudent:(Student *)astudent
{
   if (![_stuList containsObject:astudent]) {
       [_stuList addObject:astudent];
   }
}
-(void)addStudent:(Student *)astudent atIndex:(NSInteger)index
{
   if (![_stuList containsObject:astudent]) {
       [_stuList insertObject:astudent atIndex:index];
   }
}
-(void)removeStudent:(Student *)astudent
{
   if ([_stuList containsObject:astudent]) {
       [_stuList removeObject:astudent];
   }
}
-(void)removeStudentAtIndex:(NSInteger)index
{

   [_stuList removeObjectAtIndex:index];
}
-(void)replaceStudent:(Student *)astudent atIndex:(NSInteger)index
{
   [_stuList replaceObjectAtIndex:index withObject:astudent];
}

-(void)showStuList  //遍历可变数组
{
   NSLog(@"111");
   NSLog(@"学生列表:%@",_stuList);
   Student *obj;
   for(obj in _stuList)
   {
       [obj printStudnent];
   }
   
}

-(void)sortedByNumber //降序排列
{
   [_stuList sortUsingSelector:@selector(isSortByNum:)];
}
-(void)sortedByScore
{
   [_stuList sortUsingSelector:@selector(isSortByScore:)];
}
-(void)sortedByName
{
   [_stuList sortUsingSelector:@selector(isSortByName:)];
}

//类方法
+(void)testMyClass
{
   MyClass *iosClass=[[MyClass alloc]initWithClassName:@"ios班级"];
   for (NSInteger i=0; i<10; i++) {
       Student *stu = [[Student alloc]initWithName:[NSString stringWithFormat:@"stu%d",arc4random()%50+1] number:arc4random()%100+1 score:arc4random()%101];
       [iosClass addStudent:stu];
   }
   NSLog(@"---排序前----");
   [iosClass showStuList];
}

@end
main函数
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo}p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #bb2ca2}span.s1 {font-variant-ligatures: no-common-ligatures; color: #bb2ca2}span.s2 {font-variant-ligatures: no-common-ligatures}span.s3 {font-variant-ligatures: no-common-ligatures; color: #000000}span.s4 {font-variant-ligatures: no-common-ligatures; color: #4f8187}span.s5 {font-variant-ligatures: no-common-ligatures; color: #31595d}span.s6 {font-variant-ligatures: no-common-ligatures; color: #272ad8}

int main(int argc, const char * argv[]) {
   @autoreleasepool {
       [MyClass testMyClass];
   }
   return 0;
}

一开始直接调用[MyClass testMyClass],没有打印出排序前的课程信息。在几个关键语句前加了测试输出函数,发现问题出在MyClass类中的addStudent方法。可以成功调用并运行这个函数,但是运行结束后学生列表仍为空。
测试输出结果如下图:

屏幕快照 2016-10-13 下午6.47.02.png

3. 代码修改

针对之前的问题,浏览了一遍代码,首先发现了两个低级错误,就是在构造函数中把 self = [super init] 错写成了 self = [super self],修改之后输出结果没变化。

因为输出结果是学生列表指针为空,所以我首先想到的是Class类中添加学生到列表的函数出错

(void)addStudent:(Student *)astudent

仔细检查并重写了个简单的test函数,发现这个函数没错,我就开始检查学生列表 _stuList的初始化问题。发现在Class构造函数中没有初始化这个列表,所以指针一直为空。
所以将MyClass.m中的构造函数修改为:

p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo}p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #bb2ca2}span.s1 {font-variant-ligatures: no-common-ligatures}span.s2 {font-variant-ligatures: no-common-ligatures; color: #bb2ca2}span.s3 {font-variant-ligatures: no-common-ligatures; color: #703daa}span.s4 {font-variant-ligatures: no-common-ligatures; color: #3d1d81}span.s5 {font-variant-ligatures: no-common-ligatures; color: #4f8187}span.s6 {font-variant-ligatures: no-common-ligatures; color: #008400}span.s7 {font: 11.0px 'Heiti SC Light'; font-variant-ligatures: no-common-ligatures; color: #008400}span.s8 {font-variant-ligatures: no-common-ligatures; color: #000000}

-(id)initWithClassName:(NSString *)name
{
   self=[super init];
   if (self) {
       _className=name;
       //创建可变数组
       _stuList= [NSMutableArray array];
   }
   return self;
}

再次运行,结果正确。


屏幕快照 2016-10-14 下午8.00.04.png

之后在test函数加入测试排序功能:

p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #d12f1b}p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo}p.p3 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; min-height: 13.0px}span.s1 {font-variant-ligatures: no-common-ligatures; color: #000000}span.s2 {font-variant-ligatures: no-common-ligatures; color: #3d1d81}span.s3 {font-variant-ligatures: no-common-ligatures}span.s4 {font: 11.0px 'Heiti SC Light'; font-variant-ligatures: no-common-ligatures}span.s5 {font-variant-ligatures: no-common-ligatures; color: #31595d}

   NSLog(@"---排序前----");
   [iosClass showStuList];
   
   NSLog(@"---name降序排序----");
   [iosClass sortedByName];
   [iosClass showStuList];
   
   NSLog(@"---number升序排序----");
   [iosClass sortedByNumber];
   [iosClass showStuList];
   
   NSLog(@"---score升序排序----");
   [iosClass sortedByScore];
   [iosClass showStuList];
   

得到正确结果:

屏幕快照 2016-10-14 下午8.02.27.png
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,133评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,682评论 3 390
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,784评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,508评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,603评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,607评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,604评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,359评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,805评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,121评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,280评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,959评论 5 339
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,588评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,206评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,442评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,193评论 2 367
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,144评论 2 352

推荐阅读更多精彩内容

  • 转至元数据结尾创建: 董潇伟,最新修改于: 十二月 23, 2016 转至元数据起始第一章:isa和Class一....
    40c0490e5268阅读 1,703评论 0 9
  • 基础1.r''表示''内部的字符串默认不转义2.'''...'''表示多行内容3. 布尔值:True、False(...
    neo已经被使用阅读 1,670评论 0 5
  • 20- 枚举,枚举原始值,枚举相关值,switch提取枚举关联值 Swift枚举: Swift中的枚举比OC中的枚...
    iOS_恒仔阅读 2,272评论 1 6
  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,647评论 18 139
  • 《非凡任务》,该片讲述了卧底逐步渗透到贩毒集团后,与人民警察里应外合,巧妙捣毁了整个贩毒集团的故事。一步十足的套路...
    情天勿羽阅读 260评论 0 0