如何在不指定类名的情况下专门化模板?

时间:2012-01-29 15:30:21

标签: c++ templates template-specialization one-definition-rule

我想创建一个名为debug的函数,它输出有关对象的一些信息。我的系统包含许多不同类型的对象;其中一些包含其他对象。

using namespace std; // for brevity
struct dog {string name;};
struct human {string name; string address;};
struct line {list<human*> contents;};
struct pack {vector<dog*> contents;};

我希望函数输出参数的成员name(如果有),或调试参数的contents成员(如果有)。 我想出了以下代码:

template <class T>
void debug(T object) // T here is a simple object like dog, human, etc
{
    cout << object.name.c_str() << '\n';
}

// A helper function, not really important
template <class T>
void debug_pointer(T* object)
{
    debug(*object);
}

void debug(pack object)
{
    for_each(object.contents.begin(), object.contents.end(), debug_pointer<dog>);
}

void debug(line object)
{
    for_each(object.contents.begin(), object.contents.end(), debug_pointer<human>);
}

此处,packline的代码几乎相同!我想避免多次编写相同的代码:

struct line {list<human*> contents; typedef human type;};
struct pack {vector<dog*> contents; typedef dog type;};

template <class T>
void debug(T object) // T here is a compound object (having contents)
{
    for_each(object.contents.begin(), object.contents.end(), debug_pointer<T::type>);
}

但是这种语法与“简单”对象的函数模板冲突(具有相同的签名)。

我如何重写我的代码?我不想重写第一部分(doghuman的声明等)因为我的程序的那部分已经非常复杂,并且添加了东西(基类,成员函数等)只是为了调试它似乎不合适。

4 个答案:

答案 0 :(得分:1)

将容器设为模板参数:

template <template <typename> class Container, typename T>
void debug(Container<T> object)
{
    for_each(object.contents.begin(), object.contents.end(), debug_pointer<T>);
}

顺便说一下,大多数情况下你可能想要通过const引用而不是通过值传递(这需要复制整个向量/列表):

template <template <typename> class Container, typename T>
void debug(const Container<T>& object)

如果可以使用C ++ 11,您可以使用decltype从内容中确定T

template <typename T>
void debug(const T& object)
{
    typedef decltype(*object.contents.front()) T;
    for_each(object.contents.begin(), object.contents.end(), debug_pointer<T>);
}

GCC also has typeof无法使用C ++ 11时。

答案 1 :(得分:1)

基本代码可能如下所示:

template <typename T> void debug(T const & x)
{
    debug_helper<T, has_name<T>::value>::print(x);
}

我们需要一个助手类:

template <typename, bool> struct debug_helper;

template <typename T> struct debug_helper<T, true>
{
    static void print(T const & x) { /* print x.name */ }
};
template <typename T> struct debug_helper<T, false>
{
    static void print(T const & x) { /* print x.content */ }
};

现在我们只需要一个SFINAE特征类has_name<T>,以及一个打印容器的机制。这两个问题几乎逐字逐句地解决了pretty printer code

答案 2 :(得分:1)

使用C ++ 11,decltype和SFINAE使事情变得简单:)

#include <string>
#include <vector>
#include <list>
#include <iostream>
#include <algorithm>

struct dog { std::string name; };
struct human { std::string name; std::string address; };
struct line { std::list<human*> contents; };
struct pack { std::vector<dog*> contents; };

template <typename T>
auto debug(T const& t) -> decltype(t.name, void(0)) {
  std::cout << t.name << '\n';
}

template <typename T>
auto debug(T const* t) -> decltype(t->name, void(0)) {
  if (t != 0) std::cout << t->name << '\n';
}

struct Debugger {
  template <typename T>
  void operator()(T const& t) { debug(t); }
};

template <typename C>
auto debug(C const& c) -> decltype(c.contents, void(0)) {
  typedef decltype(c.contents) contents_type;
  typedef typename contents_type::value_type type;
  std::for_each(c.contents.begin(), c.contents.end(), Debugger());
}


int main() {
  dog dog1 = { "dog1" }, dog2 = { "dog2" };
  human h1 = { "h1" }, h2 = { "h2" };

  line l; l.contents.push_back(&h1); l.contents.push_back(&h2);

  debug(l);

}

ideone的行动中,这会产生:

h1
h2

正如所料:)

没有C ++ 11,它需要一些小工艺,但原理保持不变,使用boost::enable_if您需要创建一个结构,根据{{1}的存在和可访问性引发编译错误}和name

当然,如果你只是简单地将方法连接到结构本身就会更容易:)

答案 3 :(得分:0)

您可以使用SFINAE选择正在使用的过载。

我忘记了确切的细节,但您可以使用它来检测“内容”成员或“名称”成员的存在,然后基于此重载。