博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
什么是协议类
阅读量:5008 次
发布时间:2019-06-12

本文共 831 字,大约阅读时间需要 2 分钟。

An alternative to the Handle class approach is to make Person a special kind of abstract base class called a Protocol class. By

definition, a Protocol class has no implementation; its raison d'être is to specify an interface for derived classes (see Item 36).
As a result, it typically has no data members, no constructors, a virtual destructor (see Item 14), and a set of pure virtual
functions that specify the interface. A Protocol class for Person might look like this:
class Person {
public:
  virtual ~Person();
  virtual string name() const = 0;
  virtual string birthDate() const = 0;
  virtual string address() const = 0;
  virtual string nationality() const = 0;
};

 

简而言之,就是一种特殊的抽象类,特殊在哪里?抽象类可以有实现的部分,但是协议类完全没有实现,相当于java接口。(说抽象类相当于接口有点牵强,但说协议类相当于接口勉强可以接受,呵呵。)

转载于:https://www.cnblogs.com/helloweworld/archive/2013/05/29/3107173.html

你可能感兴趣的文章
为什么百万医疗险越来越多,到底选哪款?
查看>>
如何检测 51单片机IO口的下降沿
查看>>
扫描识别控件Dynamic .NET TWAIN使用教程:如何将事件添加到应用程序中
查看>>
创建和修改主键 (SQL)
查看>>
2018-2019 ICPC, NEERC, Southern Subregional Contest(训练记录)
查看>>
20145233 《信息安全系统设计基础》第7周学习总结
查看>>
linux设备驱动程序第3版学习笔记(例程2--hellop.c)
查看>>
玩转storm
查看>>
第10章 使用Apache服务部署静态网站
查看>>
关于给予webApp框架的开发工具
查看>>
c语言编写的生成泊松分布随机数
查看>>
Maven入门笔记
查看>>
iOS webView的常见属性和方法
查看>>
理解position:relative
查看>>
Codeforces Round #344 (Div. 2) Messager KMP的应用
查看>>
20145308刘昊阳 《Java程序设计》第4周学习总结
查看>>
js倒计时
查看>>
EasyUI datagrid 格式 二
查看>>
Android虹软人脸识别sdk使用工具类
查看>>
UI:基础
查看>>