C++接口隔离示例(设计模式)

本文介绍C++设计模式中的接口隔离示例。使用接口隔离独立性好,且只限于它的接口(单一性原则)。

相同的返回却不同的操作

  • Device类继承于AudioDeviceVideoDevice;
  • Device中:

    1
    2
    AudioDevice *audioDevice() { return this; } // 接口隔离
    VideoDevice *videoDevice() { return this; } // 接口隔离
  • 由于都返回this指针,但实际只能访问到对应的返回值,这就是接口隔离的核心所在。

使用基本套路

  • 单一原则的继承;
  • 接口的返回。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <iostream>

using namespace std;

class AudioDevice {
public:
AudioDevice() {}
void open() { cout<<"Open Audio Device."<<endl; }
void close() { cout<<"Close Audio Device."<<endl; }
};

class VideoDevice {
public:
VideoDevice() {}
void open() { cout<<"Open Video Device."<<endl; }
void close() { cout<<"Close Video Device."<<endl; }
};

class Device : public AudioDevice, public VideoDevice {
public:
Audio() {}

AudioDevice *audioDevice() { return this; } // 接口隔离
VideoDevice *videoDevice() { return this; } // 接口隔离
};

int main(int argc, char *argv[])
{
Device device;
device.audioDevice()->open();
device.audioDevice()->close();

device.videoDevice()->open();
device.videoDevice()->close();
return 0;
}

关于更新

  • 文章首发于微信公众号你才小学生(nicaixiaoxuesheng)
  • 后续更新于Qtbig哥(qtbig.com)