当前位置:网站首页>OC-协议
OC-协议
2022-08-04 21:37:00 【彭同学她同桌】
什么是协议
定义一组方法 由其他类来实现。
如果一个类实现了这个协议则代表这个类遵循了这个协议
格式
@protocol 协议的名字<父协议> // 一般情况下 父协议是NSObject
创建协议
//Pro.h
@protocol pro<NSObject>
-(void)play;//并不在Son的头文件中声明 而是在协议中声明这个方法
@optional//标识下面这个函数可实现 也可以不实现
-(void)read;
@required//标识下面这个函数必须实现 默认就是required
-(void)eat;
@end
导入协议
//Son.h
import"Pro.h"
@interface Son:NSObject<pro/*,这里可以添加其他的协议*/>
//-(void)play//不声明
@end
//Son.m
import"Son.h"
@implementation Son
-(void)play
{
NSLog(@"%@",__func__)
}
@end
//main.m
import"Foundation/Foundation.h"
import"Son.h"
int main()
{
Son *s = [[Son alloc]init];
[s play];//发现也能调用
}
协议限制传入的参数 也可以限制成员变量
创建协议
//people.h 创建一个人的协议
@protocol people<NSObject>
-(char*)name;
-(id)initWithName;
@end
创建女人类
//Woman.h
import"people.h"
@interface Woman:NSObject<people>
{
char *_name;
id friend;//可以改成下面这样
}
//@property id<people>friend;//直接限制成员变量
-(void)setWithFriend:(id)<people>f
@end
//Woman.m
import"Woman.h"
@implementation Woman
-(void)setWithFriend:(id)<people>f//只允许与遵守人协议的对象做朋友
{
NSLog(@"%@:%@",__func__,[f name]);
}
-(id)initWithName:(char*)n;
{
if((self = [[super alloc]init])!= nil)
{
_name = n;
}
return self;
}
-(char*)name
{
return name;
}
@end
创建男人类
//Man.h
import"people.h"
@interface Man:NSObject<people>
{
char *_name;
id *friend;
}
@end
//Man.m
import"Man.h"
@implementation Man
-(id)initWithName:(char*)n;
{
if((self = [[super alloc]init])!= nil)
{
_name = n;
}
return self;
}
-(char*)name
{
return name;
}
@end
创建狗类
//Dog.h
@interface Dog:NSObject
@end
//Dog.m
import"Dog.h"
@implementation Dog
@end
main
int main()
{
Woman *hong = [[Woman alloc]initWithName:@"小红"];
Man*ming = [[Man alloc]initWithName:@"小明"];
Dog*huang = [[Dog alloc]init];
[hong setWithFriend:ming];//setWithFriend:小明
//[hong setWithFriend:huang];//这样就会报错 因为dog不遵守人的协议
}
BOOL conformsToProtocol: 判断是否遵循协议
[hong conformsToProtocol:@protocol(people)];
边栏推荐
- How to solve the problem that the alarm information cannot be transmitted after EasyGBS is connected to the latest version of Hikvision camera?
- 【ubuntu20.04安装MySQL以及MySQL-workbench可视化工具】
- Win11如何开启Telnet客户端?
- 【PCBA program design】Grip dynamometer program
- PCBA scheme design - kitchen voice scale chip scheme
- DSPE-PEG-Aldehyde, DSPE-PEG-CHO, Phospholipid-Polyethylene Glycol-Aldehyde A hydrophobic 18-carbon phospholipid
- 经验分享|盘点企业进行知识管理时的困惑类型
- ES6高级-async的用法
- C language knowledge (1) - overview of C language, data types
- 搬走地下空间开发利用“绊脚石” 中地数码取得地下空间透明化技术突破
猜你喜欢
基于 Milvus 和 ResNet50 的图像搜索(部署及应用)
中大型商业银行堡垒机升级改造方案!必看!
Why is MySQL query slow?
In which industries is the PMP certificate useful?
Ramnit感染型病毒分析与处置
AXI interface application of Zynq Fpga image processing - the use of axi_lite interface
PowerCLi batch configuration of NTP
【ubuntu20.04安装MySQL以及MySQL-workbench可视化工具】
Flutter 实现背景图片毛玻璃效果
【QT】回调函数的实现
随机推荐
8 年产品经验,我总结了这些持续高效研发实践经验 · 协同篇
[QT] Implementation of callback function
【线性代数03】消元法展示以及AX=b的4种解情况
LayaBox---TypeScript---Example
搬走地下空间开发利用“绊脚石” 中地数码取得地下空间透明化技术突破
零基础都能拿捏的七夕浪漫代码,快去表白或去制造惊喜吧
[21 days learning challenge - kernel notes] (2), based in the device tree
Ramnit感染型病毒分析与处置
JdbcTemplate概述和测试
PRIMAL: Pathfinding via Reinforcement and Imitation Multi-Agent Learning Code Analysis
命名路由、组件中name的作用
Altium Designer 19.1.18 - draw polygons copper hollow out, for the cursor just capture solutions
[Linear Algebra 03] Elimination method display and 4 solutions of AX=b
基于声卡实现的音频存储示波器,可作为电磁学实验的测量仪表
Codeforces Round #811 (Div. 3)
热力学相关的两个定律
In which industries is the PMP certificate useful?
【线性代数02】AX=b的2种解释和矩阵乘法的5种视角
如何一键重装win7系统?重装win7系统详细教程
LayaBox---TypeScript---结构