Policy-based design

简介:        One problem which often arises during programming is how to build a base set of functionality which can be extended by...

       One problem which often arises during programming is how to build a base set of functionality which can be extended by the user, while still being modular enough to make it easy to replace only certain parts of an implementation without having to resort to copy & paste techniques. I guess everybody of us has faced this problem at least once, and came up with different solutions. There is a powerful and elegant technique called policy-based design for solving this kind of problem.

      Simple example

#include<iostream>
#include<string>
using namespace std;

template<typename output_policy,typename language_policy>
class HelloWorld:public output_policy,public language_policy
{
    using output_policy::Print;
    using language_policy::Message;

public:
    void Run()
	{
		Print(Message());
    }
};

class HelloWorld_OutputPolicy_WriteToCout
{
protected:
	template<typename message_type>
    void Print(message_type message)
    {
		std::cout << message << std::endl;
    }
};

class HelloWorld_LangguagePolicy_English
{
protected:
	std::string Message()
    {
        return "Hello World!";
    }
};

class HelloWorld_LanguagePolicy_German
{
protected:
	std::string Message()
    {
        return "Hello Policy!";
    }
};

int main()
{
    typedef HelloWorld<HelloWorld_OutputPolicy_WriteToCout,HelloWorld_LangguagePolicy_English> myPolicyClass;
    myPolicyClass hello1;
    hello1.Run();

    typedef HelloWorld<HelloWorld_OutputPolicy_WriteToCout,HelloWorld_LanguagePolicy_German> myOtherPolicyClass;
    myOtherPolicyClass hello2;
    hello2.Run();
}

      Makefile

all:policy

# which compiler
CC=g++ 
# Where are include file kept
INCLUDE = .

# Where to install
INSTDIR = /usr/local/bin

# Options for development
CFLAGS = -g -Wall -ansi

policy:policy.o
	$(CC) -o policy policy.o

policy.o:policy.cpp
#	$(CC) -I$(INCLUDE) $(CFLAGS) -c msgqueue.c
#	$(CC) -D_REENTRANT -c msgqueue.c -lpthread
	$(CC) -c policy.cpp -o policy.o

clean:
	-rm  policy.o policy

install:policy
	@if [-d $(INSTDIR) ];\
        then \
        cp policy $(INSTDIR);\
        chmod a+x $(INSTDIR)/policy;\
        chmod og-w $(INSTDIR)/policy;\
        echo "Install in $(INSTDIR)";\
    else \
       echo "Sorry,$(INSTDIR) does not exist";\
    fi 

      Runing result:

       Hello World

       Hello Policy

目录
相关文章
|
机器学习/深度学习 算法
尝试理解论文SPOT1的代码1:Supported Policy Optimization for Offline Reinforcement Learning
尝试理解论文SPOT1的代码1:Supported Policy Optimization for Offline Reinforcement Learning
137 0
|
设计模式 分布式计算 Kubernetes
译|Design patterns for container-based distributed systems(上)
译|Design patterns for container-based distributed systems
87 0
|
设计模式 缓存 监控
译|Design patterns for container-based distributed systems(下)
译|Design patterns for container-based distributed systems(下)
72 0
|
算法 数据挖掘 开发者
basic concept| 学习笔记
快速学习 basic concept。
basic concept| 学习笔记
|
机器学习/深度学习 自然语言处理 PyTorch
Re6:读论文 LeSICiN: A Heterogeneous Graph-based Approach for Automatic Legal Statute Identification fro
Re6:读论文 LeSICiN: A Heterogeneous Graph-based Approach for Automatic Legal Statute Identification fro
Re6:读论文 LeSICiN: A Heterogeneous Graph-based Approach for Automatic Legal Statute Identification fro
PAT (Advanced Level) Practice - 1107 Social Clusters(30 分)
PAT (Advanced Level) Practice - 1107 Social Clusters(30 分)
144 0
|
机器学习/深度学习 数据可视化 数据挖掘
Paper:《Graph Neural Networks: A Review of Methods and Applications》解读(一)
Paper:《Graph Neural Networks: A Review of Methods and Applications》
|
机器学习/深度学习 人工智能 编解码
Paper:《Graph Neural Networks: A Review of Methods and Applications》解读(二)
Paper:《Graph Neural Networks: A Review of Methods and Applications》
Basic Concepts of Genetic Data Analysis
Basic Concepts of Genetic Data Analysis
906 0