枚举值的模板特化

时间:2017-12-06 04:42:41

标签: c++ templates sfinae specialization

是否可以为单个枚举值专门化一个类方法? 具体来说,我有一个枚举和一个类如下:

#include <iostream>
#include <stdio.h>

using namespace std;

enum class Animal { dog, cat, bird  };
class Sound
{
   public:
      static void getSound ( const Animal& arg )
      {
         switch ( arg )
         {
           case Animal::dog:
             // dog specific processing
             break;

           case Animal::cat:
             // cat specific processing
             break;

           case Animal::bird:
             // bird specific processing
             break;

           default:
             return;
         }
      }
};

我想为每个枚举值专门化getSound函数以摆脱switch案例。这样的模板专业化可能吗?

2 个答案:

答案 0 :(得分:4)

是的,有可能。请看下面的示例。

#include <iostream>
#include <stdio.h>

using namespace std;

enum class Animal { dog, cat, bird  };
class Sound
{
   public:
      template<Animal animal>
      static void getSound ();
};

template<>
void Sound::getSound<Animal::dog> ()
{
    // dog specific processing
}

template<>
void Sound::getSound<Animal::cat> ()
{
    // cat specific processing
}

template<>
void Sound::getSound<Animal::bird> ()
{
    // bird specific processing
}

int main()
{
    Sound::getSound<Animal::dog>();
}

答案 1 :(得分:2)

我不知道你为什么要去专业化。如果此示例是指示性的并且您的枚举器是顺序的并且从0开始,则可以使用查找表:

enum class Animal { dog, cat, bird, count = (bird - dog + 1) };

static std::string getSound ( Animal arg ) // Pass an enumeration by value, it's cheaper
{
  std::array<char const *, static_cast<std::size_t>(Animal::count)> const sound {{
    "bark", "meow", "chirp"
  }};
  return sound.at(static_cast<std::size_t>(arg));
}

就是这样。它还会通过抛出异常替换"unknown"字符串。我认为这是有道理的,因为范围的枚举意味着我们期望严格检查传递的值。打破 是一种特殊情况。

即使您编辑的问题也可以在查找表中进行处理:

static void getSound ( Animal arg ) // Pass an enumeration by value, it's cheaper
{
  std::array<std::function<void(void)>,
            static_cast<std::size_t>(Animal::count)> const handler{{
    [] { /*Process for dog*/ },
    [] { /*Process for cat*/ },
    [] { /*Process for bird*/ }
  }};
  handler.at(static_cast<std::size_t>(arg))(); // The last () is invocation
}