如何使模板类Collection<K,T>
接收一个函数T
- 可以具有签名T(K)
或T(K,int)
- 作为模板参数,然后根据函数的签名有条件地编译?
这是可以接收 1 个签名的现有代码:Collection<K,HashFunction(K)>
。
template<typename AA> using HashFunction= HashStruct& (*)(AA );
/** This class is currently used in so many places in codebase. */
template<class K,HashFunction<K> T> class Collection{
void testCase(){
K k=K();
HashStruct& hh= T(k); /*Collection1*/
//.... something complex ...
}
};
我希望它也支持Collection<K,HashFunction(K,int)>
.
template<class K,HashFunction<K> T /* ??? */> class Collection{
int indexHash=1245323;
void testCase(){
K k=K();
if(T receive 2 parameter){ // ???
HashStruct& hh=T(k,this->indexHash); /*Collection2*/ // ???
//^ This is the heart of what I really want to achieve.
//.... something complex (same) ...
}else{
HashStruct& hh=T(k); /*Collection1*/
//.... something complex (same) ...
}
}
};
我是否别无选择,只能创建 2 个不同的类:Collection1
& Collection2
?
需要超过 c++11 的答案是可以的,但不太可取。
我觉得它可能可以通过使用“默认参数”技巧来解决。