@class指令

作者:追风剑情 发布于:2019-2-22 11:39 分类:Objective-C

示例一:使用@class指令

XYPoint.h

  1. #import <Foundation/Foundation.h>
  2.  
  3. @interface XYPoint : NSObject
  4.  
  5. @property int x, y;
  6.  
  7. -(void) setX: (int) xVal andY: (int) yVal;
  8.  
  9. @end


XYPoint.m

  1. #import "XYPoint.h"
  2.  
  3. @implementation XYPoint
  4.  
  5. @synthesize x, y;
  6.  
  7. -(void) setX: (int) xVal andY: (int) yVal
  8. {
  9. x = xVal;
  10. y = yVal;
  11. }
  12.  
  13. @end


Rectangle.h

  1. //
  2. // Rectangle.h
  3. // ObjectivCTest
  4. //
  5. // Created by XXX on 2019/2/21.
  6. // Copyright © 2019 XXX. All rights reserved.
  7. //
  8.  
  9. #import <Foundation/Foundation.h>
  10.  
  11. // 这里用@class指令告诉编译器XYPoint是个类,比导入头文件效率高。
  12. @class XYPoint;
  13.  
  14. @interface Rectangle : NSObject
  15.  
  16. @property int width, height;
  17.  
  18. -(XYPoint *) origin;
  19. -(void) setOrigin: (XYPoint *) pt;
  20. -(int) area;
  21. -(int) perimeter;
  22. -(void) setWidth: (int) w andHeight: (int) h;
  23.  
  24. @end


Rectangle.m

  1. #import "Rectangle.h"
  2.  
  3. @implementation Rectangle
  4.  
  5. @synthesize width, height;
  6.  
  7. // 矩形的原点坐标
  8. XYPoint *origin;
  9.  
  10. -(XYPoint *) origin
  11. {
  12. return origin;
  13. }
  14.  
  15. -(void) setOrigin: (XYPoint *) pt
  16. {
  17. origin = pt;
  18. }
  19.  
  20. -(void) setWidth: (int) w andHeight: (int) h
  21. {
  22. width = w;
  23. height = h;
  24. }
  25.  
  26. // 求在积
  27. -(int) area
  28. {
  29. return width * height;
  30. }
  31.  
  32. // 求周长
  33. -(int) perimeter
  34. {
  35. return (width + height) * 2;
  36. }
  37.  
  38. @end


main.m

  1. #import <Foundation/Foundation.h>
  2. #import "Rectangle.h"
  3. #import "XYPoint.h"
  4.  
  5. int main(int argc, const char * argv[]) {
  6. @autoreleasepool {
  7. Rectangle *myRect = [[Rectangle alloc] init];
  8. XYPoint *myPoint = [[XYPoint alloc] init];
  9. [myPoint setX: 100 andY: 200];
  10. [myRect setWidth: 5 andHeight: 8];
  11. myRect.origin = myPoint;
  12. NSLog(@"Rectangle w = %i, h = %i", myRect.width, myRect.height);
  13. // myRect.origin.x等价于[[myRect origin] x]
  14. NSLog(@"Origin at (%i, %i)", myRect.origin.x, myRect.origin.y);
  15. NSLog(@"Area = %i, Perimeter = %i",
  16. [myRect area], [myRect perimeter]);
  17. }
  18. return 0;
  19. }

运行测试
5555.png

示例二:不能使用@class的情况

XYPoint.h

  1. #import <Foundation/Foundation.h>
  2.  
  3. @interface XYPoint : NSObject
  4.  
  5. @property int x, y;
  6.  
  7. -(void) setX: (int) xVal andY: (int) yVal;
  8.  
  9. @end


XYPoint.m

  1. #import "XYPoint.h"
  2.  
  3. @implementation XYPoint
  4.  
  5. @synthesize x, y;
  6.  
  7. -(void) setX: (int) xVal andY: (int) yVal
  8. {
  9. x = xVal;
  10. y = yVal;
  11. }
  12.  
  13. @end


Rectangle.h

  1. //
  2. // Rectangle.h
  3. // ObjectivCTest
  4. //
  5. // Created by XXX on 2019/2/21.
  6. // Copyright © 2019 XXX. All rights reserved.
  7. //
  8.  
  9. #import <Foundation/Foundation.h>
  10.  
  11. // 这里用@class指令告诉编译器XYPoint是个类,比导入头文件效率高。
  12. //@class XYPoint;
  13. // 因为Rectangle.m中调用了XYPoint类的方法,编译器需要知道XYPoint的更多信息,
  14. // 所以必须导入头文件,而不能使用@class指令
  15. #import "XYPoint.h"
  16.  
  17. @interface Rectangle : NSObject
  18.  
  19. @property int width, height;
  20.  
  21. -(XYPoint *) origin;
  22. -(void) setOrigin: (XYPoint *) pt;
  23. -(int) area;
  24. -(int) perimeter;
  25. -(void) setWidth: (int) w andHeight: (int) h;
  26.  
  27. @end


Rectangle.m

  1. #import "Rectangle.h"
  2.  
  3. @implementation Rectangle
  4.  
  5. @synthesize width, height;
  6.  
  7. // 矩形的原点坐标
  8. XYPoint *origin;
  9.  
  10. -(XYPoint *) origin
  11. {
  12. return origin;
  13. }
  14.  
  15. -(void) setOrigin: (XYPoint *) pt
  16. {
  17. // 这里创建了XYPoint实例,
  18. // 那么在Rectangle.h就必须导入XYPoint.h,而不能用@class指令单纯的告诉编译器这是个类,
  19. // 因为编译器除了要知道XYPoint是个类之外,还是要了解XYPoint的其他信息(比如方法名及函数),所以必须导入头文件。
  20. if (! origin)
  21. origin = [[XYPoint alloc] init];
  22. origin.x = pt.x;
  23. origin.y = pt.y;
  24. }
  25.  
  26. -(void) setWidth: (int) w andHeight: (int) h
  27. {
  28. width = w;
  29. height = h;
  30. }
  31.  
  32. // 求在积
  33. -(int) area
  34. {
  35. return width * height;
  36. }
  37.  
  38. // 求周长
  39. -(int) perimeter
  40. {
  41. return (width + height) * 2;
  42. }
  43.  
  44. @end


main.m

  1. #import <Foundation/Foundation.h>
  2. #import "Rectangle.h"
  3. #import "XYPoint.h"
  4.  
  5. int main(int argc, const char * argv[]) {
  6. @autoreleasepool {
  7. Rectangle *myRect = [[Rectangle alloc] init];
  8. XYPoint *myPoint = [[XYPoint alloc] init];
  9. [myPoint setX: 100 andY: 200];
  10. [myRect setWidth: 5 andHeight: 8];
  11. myRect.origin = myPoint;
  12. NSLog(@"Rectangle w = %i, h = %i", myRect.width, myRect.height);
  13. // myRect.origin.x等价于[[myRect origin] x]
  14. NSLog(@"Origin at (%i, %i)", myRect.origin.x, myRect.origin.y);
  15. NSLog(@"Area = %i, Perimeter = %i",
  16. [myRect area], [myRect perimeter]);
  17. }
  18. return 0;
  19. }

运行测试
5555.png

标签: Objective-C

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号