今天学习了NSArray的遍历和排序,现在在这里做一下总结:

遍历现在实现了四中方法:

排序大概有三中方法:(代码中都有注释)

关于对象的排序还是以Student和Book为例 每个Student持有一个Book.

主函数:

//
// main.m
// NSArray
//
// Created by WildCat on 13-7-25.
// Copyright (c) 2013年 wildcat. All rights reserved.
// #import <Foundation/Foundation.h>
#import "Student.h"
#pragma mark 创建一个集合
void arrayTest(){
//创建一个数组
NSArray *array=[NSArray array]; array=[NSArray arrayWithObjects:@"123",@"sf",@"dsg", nil];
NSLog(@"array is:%@",array); NSLog(@"tength is: %zi",array.count);
} #pragma mark 给数组里的元素发送消息
void arrayMessage(){
Student *stu1=[Student student];
Student *stu2=[Student student];
Student *stu3=[Student student];
NSArray *array=[NSArray arrayWithObjects:stu1,stu2,stu3, nil];
//让数组里的元素调用addMessage方法
[array makeObjectsPerformSelector:@selector(addMessage:) withObject:@"你好。"]; } #pragma mark 数组遍历(四种方法) void arrayLoop(){ Student *stu1=[Student student];
NSArray *array=[NSArray arrayWithObjects:stu1,@"1",@"2",@"3", nil];
//方法一 for循环
for (int i=0; i<array.count; i++) {
NSLog(@"%i->%@",i,[array objectAtIndex:i]);
} //方法二
int i=0;
for (id obj in array) {
NSLog(@"%i->%@",i,obj);
i++;
}
//方法三 通过Block遍历:官方建议使用block
[array enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
NSLog(@"%zi->%@",idx,obj);
//当执行到第3个时停止
if (idx==2){
*stop=YES;
}
}]; //方法四 通过迭代器遍历 //获得一个迭代器
NSEnumerator *enumerator=[array objectEnumerator];
id next=nil;
while (next=[enumerator nextObject]) {
NSLog(@"next->%@",next);
} //反向遍历
NSEnumerator *rvenumerator=[array reverseObjectEnumerator];
id rvnext=nil;
while (rvnext=[rvenumerator nextObject]) {
NSLog(@"rvnext->%@",rvnext);
} } #pragma mark 数组排序
void arraySort(){ NSArray *array=[NSArray arrayWithObjects:@"4",@"1",@"2",@"3", nil];
//排完后产生一个新的数组
//指定元素的排序方法 compare:
NSArray *array2=[array sortedArrayUsingSelector:@selector(compare:)];
NSLog(@"排序后:%@",array2);
}
#pragma mark 对数组中的Student对象进行排序:
//先按照性进行排序,后按照名进行排序(两种方法)
void studentSort(){ Student *stu1=[Student initWithFirstName:@"lianjie" LastName:@"Li"];
Student *stu2=[Student initWithFirstName:@"dehua" LastName:@"Liu"];
Student *stu3=[Student initWithFirstName:@"xingle" LastName:@"Li"];
Student *stu4=[Student initWithFirstName:@"long" LastName:@"Cheng"];
NSArray *array=[NSArray arrayWithObjects:stu1,stu2,stu3,stu4, nil]; //第一种方法
NSArray *array2=[array sortedArrayUsingSelector:@selector(compareStudent:)];
NSLog(@"排序后:%@",array2);
//第二种方法 通过Block排序
NSArray *array3=[array sortedArrayUsingComparator:^NSComparisonResult(Student *obj1, Student *obj2) { //先按照性进行排序
NSComparisonResult result=[obj1.lastname compare:obj2.lastname];
//再按照名进行排序
if (result==NSOrderedSame) {
result=[obj1.firstname compare:obj2.firstname];
}
return result; }];
NSLog(@"通过Block排序后:%@",array3); } #pragma mark 对数组中的Student对象进行排序: //对数组中的Student对象进行排序:先按照性进行排序,后按照名进行排序(另一种方法)
void studentSort2(){ Student *stu1=[Student initWithFirstName:@"lianjie" LastName:@"Li" bookName:@"book1"];
Student *stu2=[Student initWithFirstName:@"dehua" LastName:@"Liu" bookName:@"book2"];
Student *stu3=[Student initWithFirstName:@"xingle" LastName:@"Li" bookName:@"book2"];
Student *stu4=[Student initWithFirstName:@"long" LastName:@"Cheng" bookName:@"book1"];
NSArray *array=[NSArray arrayWithObjects:stu1,stu2,stu3,stu4, nil];
//先按照书名进行排序 NSSortDescriptor *bookNameDesc=[NSSortDescriptor sortDescriptorWithKey:@"book.name" ascending:YES];
NSSortDescriptor *lastnameDesc=[NSSortDescriptor sortDescriptorWithKey:@"lastname" ascending:YES];
NSSortDescriptor *firstnameDesc=[NSSortDescriptor sortDescriptorWithKey:@"firstname" ascending:YES]; NSArray *decarray=[NSArray arrayWithObjects:bookNameDesc,lastnameDesc,firstnameDesc, nil]; NSArray *array2=[array sortedArrayUsingDescriptors:decarray];
NSLog(@"排序后:%@",array2); } int main(int argc, const char * argv[])
{ @autoreleasepool {
// arrayTest();
// arrayMessage();
//arrayLoop();
// arraySort();
// studentSort();
//先根据book名,后根据性 ,再根据名 进行排序
studentSort2();
}
return 0;
}

Student函数:

头文件:

//  Student.h
// NSArray
//
// Created by WildCat on 13-7-25.
// Copyright (c) 2013年 wildcat. All rights reserved.
// #import <Foundation/Foundation.h>
@class Book;
@interface Student : NSObject{
NSString *_firstname;
NSString *_lastname; }
@property (nonatomic,retain) NSString * firstname;
@property (nonatomic,retain) NSString * lastname;
//每个学生拥有一本书
@property (nonatomic,retain)Book *book;
+(id)initWithFirstName:(NSString *)firstname LastName:(NSString *)lastname;
+(id)initWithFirstName:(NSString *)firstname LastName:(NSString *)lastname bookName:(NSString *)bookName;
+(id)student;
-(void) addMessage:(NSString *)str;
-(NSComparisonResult)compareStudent:(Student *)stu;
@end

.m文件:

//
// Student.m
// NSArray
//
// Created by WildCat on 13-7-25.
// Copyright (c) 2013年 wildcat. All rights reserved.
// #import "Student.h"
#import "Book.h"
@implementation Student
@synthesize firstname=_firstname;
@synthesize lastname=_lastname;
+(id)initWithFirstName:(NSString *)firstname LastName:(NSString *)lastname{
Student *stu=[[[Student alloc] init] autorelease]; stu.firstname=firstname;
stu.lastname=lastname;
return stu;
}
+(id)initWithFirstName:(NSString *)firstname LastName:(NSString *)lastname bookName:(NSString *)bookName{
Student *stu=[Student initWithFirstName:firstname LastName:lastname];
Book *book=[Book initBookWithName:bookName];
stu.book=book;
return stu;
} +(id)student{ return [[[Student alloc] init] autorelease]; }
-(void) addMessage:(NSString *)str{ NSLog(@"%@->addMessage->%@",self,str);
}
-(void)dealloc{
[_lastname release];
[_firstname release]; NSLog(@"%@ 被销毁",self);
[super dealloc];
}
//定义一个排序方法
-(NSComparisonResult)compareStudent:(Student *)stu{ //先按照性进行排序
NSComparisonResult result=[self.lastname compare:stu.lastname];
//再按照名进行排序
if (result==NSOrderedSame) {
result=[self.firstname compare:stu.firstname];
}
return result;
}
//重定义description 方法
-(NSString *)description{ return [NSString stringWithFormat:@"%@ %@->%@",self.lastname,self.firstname,self.book.name]; } @end

Book类:

.h文件:

//  Book.h
// NSArray
//
// Created by WildCat on 13-7-25.
// Copyright (c) 2013年 wildcat. All rights reserved.
// #import <Foundation/Foundation.h> @interface Book : NSObject
@property (nonatomic ,retain) NSString *name;
+(id)initBookWithName:(NSString *)name; @end

.m文件:

#import "Book.h"

@implementation Book

+(id)initBookWithName:(NSString *)name{
Book *book=[[[Book alloc] init] autorelease];
book.name=name;
return book; }
-(void)dealloc{
[_name release];
[super dealloc]; }
@end

Object-c学习之路八(NSArray(数组)遍历和排序)的更多相关文章

  1. Android开发学习之路-RecyclerView滑动删除和拖动排序

    Android开发学习之路-RecyclerView使用初探 Android开发学习之路-RecyclerView的Item自定义动画及DefaultItemAnimator源码分析 Android开 ...

  2. Java学习之路(八):Set

    Set集合概述以及特点: set 是一个不包含重复元素的collection set只是一个接口,一般使用它的子类HashSet,LinkedHashSet,TreeSet HashSet 此类是Se ...

  3. zigbee学习之路(八):定时器1(中断)

    一.前言 通过上次的实验,我们已经学会了定时器3的中断方式,这次,我们来看看定时器1通过中断怎么控制. 二.原理分析 定时器1的初始化跟前面提到的一样,也是要配置寄存器T1CTL,还要进行开中断的操作 ...

  4. 嵌入式Linux驱动学习之路(八)创建最小的根文件系统

    busybox 在配置busybox,在是否选择要静态链接库时,在静态下,busybox中的工具不需要动态链接库,能够直接运行.而用户自己编写的程序如果需要动态链接库,还是依然需要有. 如果是动态链接 ...

  5. IOS7学习之路八(iOS 禁止屏幕旋转的方法)

    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation { retu ...

  6. IOS学习之路八(GCD与多线程)

    GCD,全称Grand Central Dispath,是苹果开发的一种支持并行操作的机制.它的主要部件是一个FIFO队列和一个线程池,前者用来添加任务,后者用来执行任务. GCD中的FIFO队列称为 ...

  7. python学习之路 八 :面向对象编程基础

    本节重点 了解面向对象.面向过程的区别 掌握什么是类,什么是对象 掌握如何定义及使用类和对象 了解类与对象间的关系 掌握类属性和实例属性 掌握绑定方法 一.编程范式 ​    ​编程即写程序or写代码 ...

  8. Go数组遍历与排序

    遍历数组 Go遍历数组有两种方式 1.按照数组下标进行遍历 2.用range遍历 package main import ( "fmt" ) func main() { // 声明 ...

  9. Go语言学习笔记八: 数组

    Go语言学习笔记八: 数组 数组地球人都知道.所以只说说Go语言的特殊(奇葩)写法. 我一直在想一个人参与了两种语言的设计,但是最后两种语言的语法差异这么大.这是自己否定自己么,为什么不与之前统一一下 ...

随机推荐

  1. JS编程

    JS编程常识   一.UI层的松耦合 松耦合就是要求各层遵循“最少知识原则”,或者说是各层各司其职,不要越权: HTML:结构层 CSS:表现层 JS:行为层 对于各层的职能,有一句比较贴切的解释:H ...

  2. hive union all 使用

    功能:将两个表中的 同样的字段拼接到一起 測试: create external table IF NOT EXISTS temp_uniontest_ta ( a1 string, a2 strin ...

  3. Advance Installer安装问题

    一,在Advance Installer中注冊dll 1,首先将文件加入到Files And Folders中.此处以InstallValidate.dll为例. 2,在Custom Action处进 ...

  4. JavaBean中DAO设计模式介绍

    一.信息系统的开发架构 客户层-------显示层-------业务层---------数据层---------数据库 1.客户层:客户层就是client,简单的来说就是浏览器. 2.显示层:JSP/ ...

  5. 所谓策略,我站在旁边看今天 神刻的样子O2O

    雕爷.何许人也? 卖牛腩的大叔? 卖精油的大爷?还是卖烤肉的家伙? 事实上以上答案都是肯定的,他就是阿芙精油,雕爷牛腩创业神话的缔造者.那么雕爷是怎样取得这种创业成功的呢?前段时间我还不清楚雕爷的厉害 ...

  6. bootstrap collapse MVC .net漂亮的折叠List

    <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta na ...

  7. java中Integer包装类的具体解说(java二进制操作,全部进制转换)

    程序猿都非常懒,你懂的! 今天为大家分享的是Integer这个包装类.在现实开发中,我们往往须要操作Integer,或者各种进制的转换等等.我今天就为大家具体解说一下Integer的使用吧.看代码: ...

  8. PHP 10 : 流程控制

    原文:PHP 10 : 流程控制 感觉PHP和其他语言相似.说说PHP提供的流程控制关键字吧. 条件 ifelseelseifswitch 循环 whiledo{} while()breakconti ...

  9. Web应用程序整体测试基础——单元测试

    近年来,随着基于B/S结构的大型应用越来越多,Web应用程序测试问题也在逐步完善中.但Web应用程序测试既可以在系统开发中实施,也可以独立于系统单独完成,这取决于Web应用程序的复杂性和多样性.同时程 ...

  10. VS2015安装

    VS2015安装 Secondary Installer Setup Failed求解决方案 看到微软最近的一系列变化,着实让我等兴奋不已.VS2015下载地址就不说了.先来记录一下微软的几个变化吧. ...