Я посмотрел на несколько похожих вопросов, например , этот и , этот другой , например, и я понимаю, как работать с 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";
}
Заранее спасибо, любая помощь / руководство приветствуется!