Runtime 、 Block

1 使用Block方式,对学生对象进行排序。

1.1 问题

在iOS4.0+ 和Mac OS X 10.6+ 中添加了Block概念,以对C语言进行扩展。在Block中可以定义参数列表、返回类型,还可以获取被定义在的作用域内的局部变量的值,并且能修改使用__block修饰的局部变量的值。

Block本质上是一个变量,该变量中存储的数据是一段函数体。

1.2 方案

本案例要求定义一个学生类TRSTudent,然后创建该类的三个对象。用这三个对象建立一个数组,使用Block变量对这个数组排序。并将排序结果输出到控制台上。

1.3 步骤

实现此案例需要按照如下步骤进行。

步骤一:定义类TRStudent

首先,在Day05工程中新添加TRStudent.h文件,用于定义新的类TRStudent。

代码如下所示:

  1. #import <Foundation/Foundation.h>
  2. @interface TRStudent : NSObject
  3. @property(nonatomic,assign)int age;
  4. @property(nonatomic,copy)NSString* name;
  5. @end

在上述代码中,以下代码:

  1. @property(nonatomic,assign)int age;

在TRStudent类中定义了一个是整型属性age,用于存储学生的年龄。它有两个参数,一个是nonatomic,它代表对属性赋值的时候不加锁,即在多线程环境下访问时可能会出现数据错误,如果需要在多线程环境下运行,为保证数据不会出现错误,可使用atomic参数,它会在对属性赋值的时候加锁。另一个参数是assign,对于C语言的基本数据类型,只能选取这个参数。

在上述代码中,以下代码:

  1. @property(nonatomic,copy)NSString* name;

在TRStudent类中定义了一个是NSString类的对象name,用于存储学生的姓名。它有两个参数,一个是nonatomic,另一个参数是copy,该参数一般用于NSObject类及其子类的对象,这些对象在赋值时实现深拷贝,即属性name指向的对象是赋值给它的对象的副本。

然后,在类TRStudent的实现部分,即在TRStudent.m文件中,重写description方法的实现,该方法用于在NSLog中用%@输出TRStudent类的对象值。

代码如下所示:

  1. #import "TRStudent.h"
  2. @implementation TRStudent
  3. -(NSString *)description{
  4. return [NSString stringWithFormat:@"name:%@ age:%d",self.name, self.age];
  5. }
  6. @end

步骤二:在主程序中创建三个学生对象

代码如下所示:

  1. #import <Foundation/Foundation.h>
  2. #import "TRStudent.h"
  3. int main(int argc, const char * argv[])
  4. {
  5. @autoreleasepool {
  6. // insert code here...
  7. TRStudent* stu1 = [[TRStudent alloc]init];
  8. stu1.age = 18;
  9. stu1.name = @"zhangsan";
  10. TRStudent* stu2 = [[TRStudent alloc]init];
  11. stu2.age = 19;
  12. stu2.name = @"lisi";
  13. TRStudent* stu3 = [[TRStudent alloc]init];
  14. stu3.age = 20;
  15. stu3.name = @"wangwu";
  16. }
  17. return 0;
  18. }

步骤三:在主程序中创建排序Block

代码如下所示:

  1. #import <Foundation/Foundation.h>
  2. #import "TRStudent.h"
  3. int main(int argc, const char * argv[])
  4. {
  5. @autoreleasepool {
  6. // insert code here...
  7. TRStudent* stu1 = [[TRStudent alloc]init];
  8. stu1.age = 18;
  9. stu1.name = @"zhangsan";
  10. TRStudent* stu2 = [[TRStudent alloc]init];
  11. stu2.age = 19;
  12. stu2.name = @"lisi";
  13. TRStudent* stu3 = [[TRStudent alloc]init];
  14. stu3.age = 20;
  15. stu3.name = @"wangwu";
  16. NSComparisonResult(^compare)(id stu1,id stu2);
  17. compare = ^(id stu1,id stu2)
  18. {
  19. //类型转换
  20. NSString* s1 = nil;
  21. if([stu1 isMemberOfClass:[TRStudent class]])
  22. {
  23. s1 = ((TRStudent*)stu1).name;
  24. }
  25. NSString* s2 = nil;
  26. if([stu2 isMemberOfClass:[TRStudent class]])
  27. {
  28. s2 = ((TRStudent*)stu2).name;
  29. }
  30. return [s1 compare:s2];
  31. };
  32. }
  33. return 0;
  34. }

上述代码中,以下代码:

  1. NSComparisonResult(^compare)(id stu1,id stu2);

声明了Block变量compare,其中NSComparisonResult为Block的返回值类型。^为Block类型说明符,就像定义指针时使用*号一样。(id stu1,id stu2)为Block的形式参数。

Block本质上是变量,但因为其存储的数据是一段代码,所以它有返回值类型和形式参数。

上述代码中,以下代码:

  1. compare = ^(id stu1,id stu2)
  2. {
  3. //类型转换
  4. NSString* s1 = nil;
  5. if([stu1 isMemberOfClass:[TRStudent class]])
  6. {
  7. s1 = ((TRStudent*)stu1).name;
  8. }
  9. NSString* s2 = nil;
  10. if([stu2 isMemberOfClass:[TRStudent class]])
  11. {
  12. s2 = ((TRStudent*)stu2).name;
  13. }
  14. return [s1 compare:s2];
  15. };

是实现了Block。以下语句:

  1. compare = ^(id stu1,id stu2)

是对Block变量compare的赋值,将一段代码赋值给这个变量。在这段代码中,以下代码:

  1. NSString* s1 = nil;
  2. if([stu1 isMemberOfClass:[TRStudent class]])
  3. {
  4. s1 = ((TRStudent*)stu1).name;
  5. }

是对形参stu1的类型检查,如果stu1是TRStudent类的对象,则将stu1中的name属性值赋值给s1。

步骤四:在主程序中对创建的数组排序

代码如下所示:

  1. #import <Foundation/Foundation.h>
  2. #import "TRStudent.h"
  3. int main(int argc, const char * argv[])
  4. {
  5. @autoreleasepool {
  6. // insert code here...
  7. TRStudent* stu1 = [[TRStudent alloc]init];
  8. stu1.age = 18;
  9. stu1.name = @"zhangsan";
  10. TRStudent* stu2 = [[TRStudent alloc]init];
  11. stu2.age = 19;
  12. stu2.name = @"lisi";
  13. TRStudent* stu3 = [[TRStudent alloc]init];
  14. stu3.age = 20;
  15. stu3.name = @"wangwu";
  16. NSComparisonResult(^compare)(id stu1,id stu2);
  17. compare = ^(id stu1,id stu2)
  18. {
  19. //类型转换
  20. NSString* s1 = nil;
  21. if([stu1 isMemberOfClass:[TRStudent class]])
  22. {
  23. s1 = ((TRStudent*)stu1).name;
  24. }
  25. NSString* s2 = nil;
  26. if([stu2 isMemberOfClass:[TRStudent class]])
  27. {
  28. s2 = ((TRStudent*)stu2).name;
  29. }
  30. return [s1 compare:s2];
  31. };
  32. NSArray* array = @[stu1,stu2,stu3];
  33. NSLog(@"array:%@",array);
  34. NSArray* array2 = [array sortedArrayUsingComparator:compare];
  35. NSLog(@"array2:%@", array2);
  36. }
  37. return 0;
  38. }

上述代码中,以下代码:

  1. NSArray* array = @[stu1,stu2,stu3];
  2. NSLog(@"array:%@",array);

用三个学生对象创建一个数组array。

上述代码中,以下代码:

  1. NSArray* array2 = [array sortedArrayUsingComparator:compare];

向数组对象array发送NSArray类的方法sortedArrayUsingComparator:消息,使用Block变量compare作为实参,传递一个排序方法,在该消息内对数组内的所有数组元素进行排序,并将排序的结果生成一个新的数组返回。

1.4 完整代码

本案例中,类TRStudent声明,即TRStudent.h文件,完整代码如下所示:

  1. #import <Foundation/Foundation.h>
  2. @interface TRStudent : NSObject
  3. @property(nonatomic,assign)int age;
  4. @property(nonatomic,copy)NSString* name;
  5. @end

类TRStudent实现,即TRStudent.m文件,完整代码如下所示:

  1. #import "TRStudent.h"
  2. @implementation TRStudent
  3. -(NSString *)description{
  4. return [NSString stringWithFormat:@"age:%d name:%@",self.age,self.name];
  5. }
  6. @end

主程序,即main.m,完整代码如下所示:

  1. #import <Foundation/Foundation.h>
  2. #import "TRStudent.h"
  3. int main(int argc, const char * argv[])
  4. {
  5. @autoreleasepool {
  6. // insert code here...
  7. TRStudent* stu1 = [[TRStudent alloc]init];
  8. stu1.age = 18;
  9. stu1.name = @"zhangsan";
  10. TRStudent* stu2 = [[TRStudent alloc]init];
  11. stu2.age = 19;
  12. stu2.name = @"lisi";
  13. TRStudent* stu3 = [[TRStudent alloc]init];
  14. stu3.age = 20;
  15. stu3.name = @"wangwu";
  16. NSComparisonResult(^compare)(id stu1,id stu2);
  17. compare = ^(id stu1,id stu2)
  18. {
  19. //类型转换
  20. NSString* s1 = nil;
  21. if([stu1 isMemberOfClass:[TRStudent class]])
  22. {
  23. s1 = ((TRStudent*)stu1).name;
  24. }
  25. NSString* s2 = nil;
  26. if([stu2 isMemberOfClass:[TRStudent class]])
  27. {
  28. s2 = ((TRStudent*)stu2).name;
  29. }
  30. return [s1 compare:s2];
  31. };
  32. NSArray* array = @[stu1,stu2,stu3];
  33. NSLog(@"array:%@",array);
  34. NSArray* array2 = [array sortedArrayUsingComparator:compare];
  35. NSLog(@"array2:%@", array2);
  36. }
  37. return 0;
  38. }
时间: 2024-10-12 21:00:05

Runtime 、 Block的相关文章

display:inline、block、inline-block的区别 摘】

display:block就是将元素显示为块级元素. block元素的特点是: 总是在新行上开始: 高度,行高以及顶和底边距都可控制: 宽度缺省是它的容器的100%,除非设定一个宽度 <div>, <p>, <h1>, <form>, <ul> 和 <li>是块元素的例子. display:inline就是将元素显示为行内元素. inline元素的特点是: 和其他元素都在一行上: 高,行高及顶和底边距不可改变: 宽度就是它的文字或图片

CUDA __shared__ thread、block、grid之间的一维关系 (例子chapter5 dot点积(GPU高性能编程))

chapter5里重要的例子是dot,来解释一个block内多个thread的共享内存和同步. __shared__共享内存:“对于在GPU上启动的每个线程块,cuda c编译器都将创建该变量的一个副本.线程块中的每个线程都共享这块内存,并和其他线程块无关,这使一个线程块中多个线程能够在计算上进行通信和协作” __syncthreads():确保线程块中的每个线程都执行完__syncthreads()前面的语句后,在往下执行. 例子是Grid->一维Block->一维Thread: 通过实例代

display:inline、block、inline-block

display:inline.block.inline-block的区别 display:block就是将元素显示为块级元素. block元素的特点是: 总是在新行上开始: 高度,行高以及顶和底边距都可控制: 宽度缺省是它的容器的100%,除非设定一个宽度 <div>, <p>, <h1>, <form>, <ul> 和 <li>是块元素的例子. display:inline就是将元素显示为行内元素. inline元素的特点是:  和

【转】display:inline、block、inline-block的区别

转自:http://www.cnblogs.com/jdonson/archive/2011/06/10/2077932.html display:block就是将元素显示为块级元素. block元素的特点是: 总是在新行上开始: 高度,行高以及顶和底边距都可控制: 宽度缺省是它的容器的100%,除非设定一个宽度 <div>, <p>, <h1>, <form>, <ul> 和 <li>是块元素的例子. display:inline就

IOS开发——OC基础-ARC、BLOCK、协议

一.ARC ARC 是一种编译器特性!而不是IOS运行时特性,和JAVA中得垃圾回收机制完全不一样ARC是自iOS 5之后增加的新特性,完全消除了手动管理内存的烦琐,编译器会自动在适当的地方插入适当的retain.release.autorelease语句.你不再需要担心内存管理,因为编译器为你处理了一切ARC规则:只要还有一个强指针变量指向对象,对象就会保持在内存中弱指针指向的对象被回收后,弱指针会自动变为nil指针,不会引发野指针错误使用注意:1.不允许调用release.retain.re

inline、block、inline-block的区别

我们用firbug浏览别人网站时会发现设计者会在很多地方使用inline-block.我们都知道inline是声明div是内联对象,block是声明块对象,那么inline-block是什么意思,即内联又成块?接下来做个测试,让我们了解一下三者的区别和作用吧: <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" conten

回传值(代理、通知、block)

回传值问题,一直都是困扰初学者的问题,今写者 代理.通知.block 三者的回传值做了一个小小的总结, Main.storyboard 视图: 通过代码分别创建三个代表 代理.通知.block 的按钮,点击相应的按钮,会将相应的文本传入文本框中显示出来 代码如下: 1 // GWFMyDelegateBlockNotyView.h 2 // 回传值 3 4 #import <UIKit/UIKit.h> 5 @class GWFMyDelegateBlockNotyView; 6 7 //协议

(8/18)重学Standford_iOS7开发_协议、block、动画_课程笔记

第八课: 1.协议 另一种安全处理id类型的方式如:id <MyProtocol> obj a.声明 //协议一般放于.h文件中或者在类的.h文件中 @protocol Foo <Xyzzy, NSObject>//<>中的内容表示还需实现自哪些协议,所有协议的根协议一般都是NSObject - (void)someMethod;//默认为必须实现的方法 @optional//可选方法声明 - (void)methodWithArgument:(BOOL)argumen

查看inode、block使用情况

查看inode.block 背景:工作中每创建一个目录或文件都会产生一个inode.block,系统产生的垃圾文件也会占用inode.block.系统中inode.block是有限的,如果inode.block满了将无法创建目录和文件. 一般情况下不更改inode.block大小的值: 效果:将inode.block使用情况写入a.log (1).df -i   //查看inode使用情况 df -h  //查看block使用情况 (2).dumpe2fs /dev/sda1 >a.log