에 추가하기 위해 기존 레거시 방법을 명령 패턴에 맞추기 위해 함수 객체를 사용했습니다. (OO 패러다임의 진정한 OCP의 아름다움이 느껴지는 곳만); 또한 여기에 관련 기능 어댑터 패턴을 추가하십시오.
메소드에 서명이 있다고 가정하십시오.
int CTask::ThreeParameterTask(int par1, int par2, int par3)
커맨드 패턴에 어떻게 맞출 수 있는지 살펴 보겠습니다. 먼저, 먼저 함수 객체로 호출 할 수 있도록 멤버 함수 어댑터를 작성해야합니다.
참고-이것은 추악한 것이며 Boost 바인드 도우미 등을 사용할 수는 있지만 원하지 않거나 원하지 않는 경우 한 가지 방법입니다.
// a template class for converting a member function of the type int function(int,int,int)
//to be called as a function object
template<typename _Ret,typename _Class,typename _arg1,typename _arg2,typename _arg3>
class mem_fun3_t
{
public:
explicit mem_fun3_t(_Ret (_Class::*_Pm)(_arg1,_arg2,_arg3))
:m_Ptr(_Pm) //okay here we store the member function pointer for later use
{}
//this operator call comes from the bind method
_Ret operator()(_Class *_P, _arg1 arg1, _arg2 arg2, _arg3 arg3) const
{
return ((_P->*m_Ptr)(arg1,arg2,arg3));
}
private:
_Ret (_Class::*m_Ptr)(_arg1,_arg2,_arg3);// method pointer signature
};
또한 우리는 호출을 돕기 위해 위의 클래스를위한 헬퍼 메소드 mem_fun3이 필요합니다.
template<typename _Ret,typename _Class,typename _arg1,typename _arg2,typename _arg3>
mem_fun3_t<_Ret,_Class,_arg1,_arg2,_arg3> mem_fun3 ( _Ret (_Class::*_Pm) (_arg1,_arg2,_arg3) )
{
return (mem_fun3_t<_Ret,_Class,_arg1,_arg2,_arg3>(_Pm));
}
이제 매개 변수를 바인딩하려면 바인더 함수를 작성해야합니다. 그래서 여기에 간다 :
template<typename _Func,typename _Ptr,typename _arg1,typename _arg2,typename _arg3>
class binder3
{
public:
//This is the constructor that does the binding part
binder3(_Func fn,_Ptr ptr,_arg1 i,_arg2 j,_arg3 k)
:m_ptr(ptr),m_fn(fn),m1(i),m2(j),m3(k){}
//and this is the function object
void operator()() const
{
m_fn(m_ptr,m1,m2,m3);//that calls the operator
}
private:
_Ptr m_ptr;
_Func m_fn;
_arg1 m1; _arg2 m2; _arg3 m3;
};
그리고 binder3 클래스-bind3을 사용하는 도우미 함수 :
//a helper function to call binder3
template <typename _Func, typename _P1,typename _arg1,typename _arg2,typename _arg3>
binder3<_Func, _P1, _arg1, _arg2, _arg3> bind3(_Func func, _P1 p1,_arg1 i,_arg2 j,_arg3 k)
{
return binder3<_Func, _P1, _arg1, _arg2, _arg3> (func, p1,i,j,k);
}
이제 이것을 Command 클래스와 함께 사용해야합니다. 다음 typedef를 사용하십시오.
typedef binder3<mem_fun3_t<int,T,int,int,int> ,T* ,int,int,int> F3;
//and change the signature of the ctor
//just to illustrate the usage with a method signature taking more than one parameter
explicit Command(T* pObj,F3* p_method,long timeout,const char* key,
long priority = PRIO_NORMAL ):
m_objptr(pObj),m_timeout(timeout),m_key(key),m_value(priority),method1(0),method0(0),
method(0)
{
method3 = p_method;
}
당신이 그것을 부르는 방법은 다음과 같습니다.
F3 f3 = PluginThreadPool::bind3( PluginThreadPool::mem_fun3(
&CTask::ThreeParameterTask), task1,2122,23 );
참고 : f3 (); task1-> ThreeParameterTask (21,22,23); 메소드를 호출합니다.
다음 링크 에서이 패턴의 전체 컨텍스트