继承

作者:追风剑情 发布于:2019-2-21 20:41 分类:Objective-C

示例一

main.m

  1. #import <Foundation/Foundation.h>
  2.  
  3. // ClassA 的声明
  4. @interface ClassA : NSObject
  5. {
  6. int x;
  7. }
  8. -(void) initVar;
  9. @end
  10.  
  11. @implementation ClassA
  12. -(void) initVar
  13. {
  14. x = 100;
  15. }
  16. @end
  17.  
  18. // ClassB 的声明和定义
  19. @interface ClassB : ClassA
  20. -(void) printVar;
  21. @end
  22.  
  23. @implementation ClassB
  24. -(void) printVar
  25. {
  26. NSLog(@"x = %i", x);
  27. }
  28. @end
  29.  
  30. int main(int argc, const char * argv[]) {
  31. @autoreleasepool {
  32. ClassB *b = [[ClassB alloc] init];
  33. [b initVar];
  34. [b printVar];
  35. }
  36. return 0;
  37. }

运行测试
222.png

示例二:通过继承来扩展(添加新方法)

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. @interface Rectangle : NSObject
  12.  
  13. @property int width, height;
  14.  
  15. -(int) area;
  16. -(int) perimeter;
  17. -(void) setWidth: (int) w andHeight: (int) h;
  18.  
  19. @end


Rectangle.m

  1. #import "Rectangle.h"
  2.  
  3. @implementation Rectangle
  4.  
  5. @synthesize width, height;
  6.  
  7. -(void) setWidth: (int) w andHeight: (int) h
  8. {
  9. width = w;
  10. height = h;
  11. }
  12.  
  13. // 求在积
  14. -(int) area
  15. {
  16. return width * height;
  17. }
  18.  
  19. // 求周长
  20. -(int) perimeter
  21. {
  22. return (width + height) * 2;
  23. }
  24.  
  25. @end


main.m

  1. #import <Foundation/Foundation.h>
  2. #import "Rectangle.h"
  3.  
  4. int main(int argc, const char * argv[]) {
  5. @autoreleasepool {
  6. Rectangle *myRect = [[Rectangle alloc] init];
  7. [myRect setWidth: 5 andHeight: 8];
  8. NSLog(@"Rectangle: w = %i, h = %i", myRect.width, myRect.height);
  9. NSLog(@"Area = %i, Perimeter = %i", [myRect area], [myRect perimeter]);
  10. }
  11. return 0;
  12. }

运行测试
333.png


示例三:在示例二的基础上新增Square类

Square.h

  1. #import "Rectangle.h"
  2.  
  3. @interface Square : Rectangle
  4.  
  5. -(void) setSide: (int) s;
  6. -(int) side;
  7.  
  8. @end


Square.m

  1. #import "Square.h"
  2.  
  3. @implementation Square: Rectangle
  4.  
  5. // 设置边长
  6. -(void) setSide: (int) s
  7. {
  8. [self setWidth: s andHeight: s];
  9. }
  10.  
  11. -(int) side
  12. {
  13. return self.width;
  14. }
  15.  
  16. @end


main.m

  1. #import <Foundation/Foundation.h>
  2. #import "Square.h"
  3.  
  4. int main(int argc, const char * argv[]) {
  5. @autoreleasepool {
  6. Square *mySquare = [[Square alloc] init];
  7. [mySquare setSide: 5];
  8. NSLog(@"Square: s = %i", [mySquare side]);
  9. NSLog(@"Area = %i, Perimeter = %i", [mySquare area], [mySquare perimeter]);
  10. }
  11. return 0;
  12. }

运行测试
444.png

标签: Objective-C

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号