IOS之学习笔记十四(协议的定义和实现)

举报
chenyu 发表于 2021/07/27 00:43:22 2021/07/27
【摘要】 1、正式协议的定义 @protocol 协议名 <父协议1, 父协议2> { 零个到多个方法定义 } 一个协议可以有多个直接父协议,但协议只能继承协议,不能继承类 协议只有方法签名,没有方法实现                 2、实现协议 @in...

1、正式协议的定义


   
  1. @protocol 协议名 <父协议1, 父协议2>
  2. {
  3. 零个到多个方法定义
  4. }

一个协议可以有多个直接父协议,但协议只能继承协议,不能继承类

协议只有方法签名,没有方法实现

 

 

 

 

 

 

 

 

2、实现协议


  
  1. @interface 类名 : 父类 <协议1,协议2…>
  2. @end

 

协议和java里面的接口差不多

 

如果要使用协议定义变量,有如下两种语法

NSObject<协议1,协议2>*变量;

id<协议1,协议2> 变量;

 

@optional关键字之后声明的方法可选实现

@required关键字之后声明的方法必选实现

 

 

 

 


3、测试Demo

1)、FirstProtocol.h


  
  1. #ifndef FirstProtocol_h
  2. #define FirstProtocol_h
  3. @protocol FirstProtocol
  4. -(void)first;
  5. @end
  6. #endif /* FirstProtocol_h */

 

 

 

2)、SecondProtocol.h


  
  1. #ifndef SecondProtocol_h
  2. #define SecondProtocol_h
  3. @protocol SecondProtocol
  4. -(void)second;
  5. @end
  6. #endif /* SecondProtocol_h */

 

 

3)、ThirdProtocol.h


  
  1. #import "FirstProtocol.h"
  2. #import "SecondProtocol.h"
  3. #ifndef ThirdProtocol_h
  4. #define ThirdProtocol_h
  5. @protocol ThirdProtocol <FirstProtocol, SecondProtocol>
  6. -(void)third;
  7. @end
  8. #endif /* ThirdProtocol_h */

 

 

 

4)、DoProtocol.h


  
  1. #import <Foundation/Foundation.h>
  2. #import "ThirdProtocol.h"
  3. #ifndef DoProtocol_h
  4. #define DoProtocol_h
  5. @interface DoProtocol : NSObject <ThirdProtocol>
  6. @end
  7. #endif /* DoProtocol_h */

 

 

 

 

5)、DoProtocol.m


  
  1. #import <Foundation/Foundation.h>
  2. #import "DoProtocol.h"
  3. @implementation DoProtocol
  4. -(void)first
  5. {
  6. NSLog(@"this first method");
  7. }
  8. -(void)second
  9. {
  10. NSLog(@"this second method");
  11. }
  12. -(void)third
  13. {
  14. NSLog(@"this third method");
  15. }
  16. @end

 

 

 

6)、main.m


  
  1. #import "DoProtocol.h"
  2. #import "ThirdProtocol.h"
  3. #import "FirstProtocol.h"
  4. int main(int argc, char * argv[]) {
  5. @autoreleasepool {
  6. DoProtocol *protocal = [DoProtocol new];
  7. [protocal first];
  8. [protocal second];
  9. [protocal third];
  10. NSObject<FirstProtocol> *first = [[DoProtocol alloc] init];
  11. [first first];
  12. id<SecondProtocol> second = [[DoProtocol alloc] init];
  13. [second second];
  14. }
  15. }

 

 

 


4、运行结果


  
  1. this first method
  2. this second method
  3. this third method
  4. this first method
  5. this second method

 

 

 

文章来源: chenyu.blog.csdn.net,作者:chen.yu,版权归原作者所有,如需转载,请联系作者。

原文链接:chenyu.blog.csdn.net/article/details/80963004

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。