我查看了一些类似的问题,例如this one和this other one,并且我了解了如何针对成员功能使用enable_if。
这是一个有效的示例:
#include <iostream>
template <int size>
class Test
{
private:
constexpr static bool ENABLE = (size < 10);
public:
template <bool E = ENABLE, typename std::enable_if<E, int>::type = 0>
static int foo();
template <bool E = ENABLE, typename std::enable_if<!E, int>::type = 0>
constexpr static int foo();
};
template <int size>
template <bool E, typename std::enable_if<E, int>::type>
int Test<size>::foo()
{
return 7;
}
template <int size>
template <bool E, typename std::enable_if<!E, int>::type>
constexpr int Test<size>::foo()
{
return 12;
}
int main()
{
Test<5> v1;
Test<15> v2;
std::cout << v1.foo() << "\n";
std::cout << v2.foo() << "\n";
}
但是,当我尝试稍微修改代码以使其适用于成员变量时,会出现讨厌的重新声明错误。这甚至可能与变量有关吗?我只是缺少一些简单的东西吗?
这是我有问题的示例代码:
#include <iostream>
template <int size>
class Test
{
private:
constexpr static bool ENABLE = (size < 10);
public:
template <bool E = ENABLE, typename std::enable_if<E, int>::type = 0>
static int foo;
template <bool E = ENABLE, typename std::enable_if<!E, int>::type = 0>
constexpr static int foo = 12;
};
template <int size>
template <bool E, typename std::enable_if<E, int>::type>
int Test<size>::foo = 7;
template <int size>
template <bool E, typename std::enable_if<!E, int>::type>
constexpr int Test<size>::foo;
int main()
{
Test<5> v1;
Test<15> v2;
std::cout << v1.foo<> << "\n";
std::cout << v2.foo<> << "\n";
}
在此先感谢您的帮助/指导!
答案 0 :(得分:5)
您可以使用提供成员foo
的条件基类来达到预期的效果:
template<int FOO_INIT>
struct TestImpl1 {
static int foo;
};
template<int FOO_INIT>
int TestImpl1<FOO_INIT>::foo = FOO_INIT;
template<int FOO_INIT>
struct TestImpl2 {
constexpr static int foo = FOO_INIT;
};
template<int FOO_INIT>
constexpr int TestImpl2<FOO_INIT>::foo;
template<int size>
struct Test
: std::conditional<
(size < 10),
TestImpl1<7>,
TestImpl2<12>
>::type
{};
int main() {
Test<5> v1;
Test<15> v2;
std::cout << v1.foo << "\n";
std::cout << v2.foo << "\n";
// constexpr int i1 = v1.foo; // Fails to compile because Test<5>::foo is not constexpr.
constexpr int i2 = v2.foo; // Compiles because Test<15>::foo is constexpr.
}
答案 1 :(得分:0)
如果仅对静态成员变量执行此操作,则仍有机会通过使用块范围的静态变量使它们起作用。这样,您的foo
就可以成为函数,因此您可以在其上应用SFINAE。
#include <iostream>
template <int size>
class Test
{
private:
constexpr static bool ENABLE = (size < 10);
public:
template <bool E = ENABLE, typename std::enable_if<E, int>::type = 0>
static int& foo();
template <bool E = ENABLE, typename std::enable_if<!E, int>::type = 0>
constexpr static int foo();
};
template <int size>
template <bool E, typename std::enable_if<E, int>::type>
int& Test<size>::foo() {
static int foo_impl = 7;
return foo_impl;
}
template <int size>
template <bool E, typename std::enable_if<!E, int>::type>
constexpr int Test<size>::foo() {
return 12;
}
int main()
{
Test<5> v1;
Test<15> v2;
std::cout << v1.foo() << "\n";
std::cout << v2.foo() << "\n";
}