12

我对模板不是很熟练。如何编写一个名为 get 的模板函数,该函数根据模板类型选择从中获取的数组?请参见下面的示例:

struct Foo
{
    int iArr[10];
    char cArr[10];

    // How to pick array here based on template type?
    template < typename T >
    T get( int idx )
    {
        // This does NOT work!
        switch ( T )
        {
        case int:
            return iArr[ idx ];
        case char:
            return cArr[ idx ];
        }
    }
};

// Expected behaviour of get()
Foo foo;
int i  = foo.get< int >( 2 );
char c = foo.get< char >( 4 );
4

6 回答 6

11

虽然 Jason 提出的解决方案有效,但它远非惯用,而且更难维护,因为语句 1)case中的值switch没有明显的含义(“幻数”),并且 2) 很容易与switch_value<>专业。我会建议这样做:

struct Foo {
    Foo() : iArr(), cArr() { }

    template<typename T>
    T get(std::size_t const idx) const     {
        return Foo::get_dispatcher<T>::impl(*this, idx);
    }

private:
    int iArr[10];
    char cArr[10];

    template<typename T>
    struct get_dispatcher;
};

template<>
struct Foo::get_dispatcher<int> {
    static int impl(Foo const& foo, std::size_t const idx) {
        return foo.iArr[idx];
    }
};

template<>
struct Foo::get_dispatcher<char> {
    static char impl(Foo const& foo, std::size_t const idx) {
        return foo.cArr[idx];
    }
};

使用除orFoo::get<>以外的任何类型调用都会产生编译器错误。intchar

于 2011-06-23T03:10:48.827 回答
9

您将需要添加某种类型的值结构,您可以使用它来从中获取 switch 语句的值。例如:

template<typename T>
struct switch_value {};

template<>
struct switch_value<int>
{
    enum { value = 1 };
};

template<>
struct switch_value<char>
{
    enum { value = 2 };
};

//then inside you structure Foo
template <typename T>
T get( int idx )
{
    switch ( switch_value<T>::value )
    {
    case 1:
        return iArr[ idx ];
    case 2:
        return cArr[ idx ];
    }
}

这里的好处是,如果您使用的类型没有有效值,这应该会引发编译器错误,因为默认版本switch_value<T>没有定义 member value,所以如果您没有为特定类型专门化结构,那么这样模板实例化将失败。

于 2011-06-23T02:27:13.557 回答
2

所有这些答案都太过分了。

template <typename T>
T get( int idx )
{
   if ( boost::is_same<T, int>::value)
      return *(T*)&iArr[ idx ];
   else
      return *(T*)&cArr[ idx ];
}
于 2013-07-30T18:23:41.387 回答
1

对于您的示例来说,这可能有点矫枉过正,但如果您真的一次只需要存储一个数组,那么您可以使用 boost::variant 类和访问者,例如,

#include <boost/variant.hpp>
#include <iostream>

template< typename T >
class GetVisitor : public boost::static_visitor<T>
{
  public:
    GetVisitor(int index) : index_(index) {};

    template <typename U >
    T operator() (U const& vOperand) const
    {
        return vOperand[index_];
    }

  private:
    int index_;
};


int main ()
{
    int  iArr[10] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
    char cArr[10] = { 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j' };

    boost::variant<int*, char*>  intVariant(iArr);   //- assign integer array to variant
    boost::variant<int*, char*>  charVariant(cArr);  //- assign character array to another variant

    int  testInt  = boost::apply_visitor(GetVisitor<int>(2),  intVariant);  
    char testChar = boost::apply_visitor(GetVisitor<char>(9), charVariant);

    std::cout << "returned integer is "   << testInt  << std::endl;
    std::cout << "returned character is " << testChar << std::endl;

    return 0;
}

output is:   
returned integer is 3   
returned character is j   

GetVisitor 类隐含的对变体的限制是变体的所有成员都必须实现:

T operator[](int)

因此,您还可以添加例如 std::vector 和 std::deque 作为变体的潜在成员。

于 2011-06-23T12:02:26.533 回答
1

您可以专门化成员函数:

struct foo
{
    int  iArr[10];
    char cArr[10];

    template<typename T>
    T &get(int ipos) { assert( false && "Foo.get: Invalid type!" ); return T(); }

    template<>
    int &get<int>(int ipos) { return iArr[ipos]; }

    template<> 
    char &get<char>(int ipos) {return cArr[ipos]; }

    // add more specialisations for any other types...
};

适用于 msvc++ 2010。希望这会有所帮助。

Jason 建议的 switch 专业化也应该可以正常工作。

于 2011-06-23T02:42:48.143 回答
0

我认为这是您除了只关注模板功能之外想要的:

在 .h 文件中

template < typename T >
struct Foo
{
    T arr[10];

    T get( int idx )
    {
      return arr[ idx ];
    }
};

你在某处使用它,例如:

Foo<int> foo1;
Foo<char> foo2;
int i  = foo1.get( 2 );
char c = foo2.get( 4 );
于 2013-07-30T18:56:52.327 回答