我有以下代码......
#include <iostream>
using namespace std;
template<typename R, R V = R()> R X() { return V; }
int main()
{
cout << boolalpha << X<bool>() << endl;
cout << boolalpha << X<bool, true>() << endl;
cout << X<int>() << endl;
cout << X<int, 5>() << endl;
cout << X<void>() << endl; // compiler error
return 0;
}
...适用于bool和int情况,但不能在void情况下编译。有办法解决这个问题吗?
我知道这样的代码是可以接受的......
void F()
{
return void();
}
...所以需要以某种方式从模板中获取该行为。
答案 0 :(得分:1)
使用std::enable_if在两个功能模板之间进行选择。 Live Example:
#include <iostream>
#include <type_traits>
using namespace std;
template<typename R, R V = R()>
typename std::enable_if<!is_same<R, void>::value, R>::type X() { return V; }
template<typename R>
typename std::enable_if<is_same<R, void>::value, R>::type X() { return; }
int main()
{
cout << boolalpha << X<bool>() << endl;
cout << boolalpha << X<bool, true>() << endl;
cout << X<int>() << endl;
cout << X<int, 5>() << endl;
X<void>(); // You can't print `void` with standard iostreams...
return 0;
}
答案 1 :(得分:0)
您可以创建无效类型(无)并指定类型为traits的返回类型:
#include <iostream>
struct None {};
// It may not be reasonable o provide the operator:
inline std::ostream& operator << (std::ostream& stream, None) {
return stream;
}
template<typename R>
struct Traits {
typedef R return_type;
};
template<>
struct Traits<void> {
typedef None return_type;
};
template<typename R>
typename Traits<R>::return_type X() { return typename Traits<R>::return_type(); }
template<typename R, typename Traits<R>::return_type V>
typename Traits<R>::return_type X() { return V; }
int main()
{
std::cout << std::boolalpha << X<bool>() << std::endl;
std::cout << std::boolalpha << X<bool, true>() << std::endl;
std::cout << X<int>() << std::endl;
std::cout << X<int, 5>() << std::endl;
std::cout << X<void>() << std::endl;
return 0;
}
此外,函数X
被拆分为两个,以避免使用默认模板参数的问题。