我想编写两个模板函数,一个捕获特定案例,另一个捕获与第一个案例不匹配的所有其他案例。我正在尝试使用 std::enable_if 来捕捉特定情况,但编译器仍然失败,匹配不明确。如何编写这些重载函数以便编译器解决歧义?(我正在使用 g++)
我尝试编写以下代码(这是重现问题的简化示例):
struct resource1_t{
};
struct resource2_t{
};
template <typename R, typename V>
struct unit_t{
typedef R resource_t;
typedef V value_t;
unit_t(value_t const& value):v(){}
value_t v;
value_t calcValue(resource_t const& r)const{return v;}
};
// Specific case (U::resource_t == R)
template <typename U, typename R, typename=std::enable_if_t<std::is_same_v<typename U::resource_t,R>>>
typename U::value_t callCalcValue(U const& u, R const& r){
return u.calcValue(r);
}
// General case (U::resource_t != R)
template <typename U, typename R>
typename U::value_t callCalcValue(U const& u, R const& r){
// Fail immediately!
assert(!"Unit resource does not match");
return U::value_t();
}
int main()
{
// Create an array of unit variants
typedef unit_t<resource1_t,int> U1;
typedef unit_t<resource2_t,float> U2;
std::vector<std::variant<U1,U2>> units;
units.emplace_back(U1(1));
units.emplace_back(U2(1.0f));
// Create a parallel array of resources
std::vector<std::variant<resource1_t,resource2_t>> resources;
resources.emplace_back(resource1_t());
resources.emplace_back(resource2_t());
// Call calcValue for each unit on the parallel resource
for(int i(0); i<units.size(); ++i){
std::visit([&](auto&& unit){
std::visit([&](auto&& resource){
// Fails to compile with substitution failure...
//std::cout << unit.calcValue(resource) << "\n";
// Results in ambiguous call compile error...
std::cout << callCalcValue(unit,resource) << "\n";
},resources[i]);
},units[i]);
}
}
我希望编译器将所有情况std::is_same_v<U::resource_t,R>
与特定情况以及所有其他组合与一般情况相匹配,相反,编译器无法说明该函数不明确。我也尝试! std::is_same
了第二个定义,编译器失败了error: redefinition of ... callCalcValue()...