එකතු කිරීම සඳහා, විධාන රටාවට පවත්නා උරුම ක්රමයක් ගැලපීම සඳහා මම ක්රියාකාරී වස්තු භාවිතා කර ඇත; (OO පරමාදර්ශයේ සැබෑ OCP හි සුන්දරත්වය මට දැනුණු එකම ස්ථානය); අදාළ ශ්රිත ඇඩැප්ටර රටාව ද මෙහි එක් කරයි.
ඔබේ ක්රමයට අත්සන තිබේ යැයි සිතමු:
int CTask::ThreeParameterTask(int par1, int par2, int par3)
විධාන රටාව සඳහා අපට එය ගැලපෙන්නේ කෙසේදැයි අපි බලමු - මේ සඳහා, පළමුව, ඔබ සාමාජික ශ්රිත ඇඩැප්ටරයක් ලිවිය යුතු අතර එමඟින් එය ක්රියාකාරී වස්තුවක් ලෙස හැඳින්විය හැකිය.
සටහන - මෙය කැතයි, ඔබට බූස්ට් බයින්ඩ් උදව්කරුවන් ආදිය භාවිතා කළ හැකිය, නමුත් ඔබට නොහැකි නම් හෝ අවශ්ය නොවන්නේ නම් මෙය එක් ක්රමයකි.
// 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;
};
තවද, බින්ඩර් 3 පන්තිය භාවිතා කිරීම සඳහා උපකාරක ශ්රිතයක් - 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);
}
දැන්, අපි මෙය විධාන පන්තිය සමඟ භාවිතා කළ යුතුය; පහත සඳහන් යතුරු ලියනය භාවිතා කරන්න:
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) ලෙස හඳුන්වනු ඇත.
මෙම රටාවේ සම්පූර්ණ සන්දර්භය පහත සබැඳියෙන්