c++ - 类与函数模板特化

标签 c++ templates function-templates template-classes

这个问题在这里已经有了答案:





C++ template specialization for pointer?

(3 个回答)


2年前关闭。




我最近才从 here 了解到 C++ 中的部分模板特化。 ,它完美地解决了我需要一个模板类对指针和非指针表现不同的问题。一个简化的例子是:

// main.cpp

template <typename T>
class C
{
public:
  C( const T& t ) : t_( t ) {}
private:
  T t_;
};

template <typename T>
class C<T*>
{
public:
  C( const T& t ) : t_( new T(t) ) {}
  ~C() { delete t_; }
private:
  T* t_;
};

int main( int argc, char* argv[] )
{
  C<int>  c1(4);
  C<int*> c2(2);

  return 0;
}

我想尝试将这个想法扩展到函数,但遇到了我不理解的编译器错误:
// main.cpp
#include <set>

template <typename T>
std::set<T> makeSet( size_t off )
{
  std::set<T> s;
  s.insert( T() + T(off) );
  return s;
}

template <typename T>
std::set<T*> makeSet<T*>( size_t off )
{
  std::set<T*> s;
  T* t = new T( T() + T(off) );
  s.insert( t );
  return s;
}

int main( int argc, char* argv[] )
{
  std::set<int>  s1 = makeSet<int>(4);
  std::set<int*> s2 = makeSet<int*>(2);

  delete *(s2.begin());

  return 0;
}

.
$ g++ --version && g++ -g ./main.cpp
g++ (GCC) 9.2.1 20190827 (Red Hat 9.2.1-1)
Copyright (C) 2019 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

./main.cpp:13:38: error: non-class, non-variable partial specialization ‘makeSet<T*>’ is not allowed
   13 | std::set<T*> makeSet<T*>( size_t off )
      |                                      ^
./main.cpp: In function ‘int main(int, char**)’:
./main.cpp:23:37: error: call of overloaded ‘makeSet<int>(int)’ is ambiguous
   23 |   std::set<int>  s1 = makeSet<int>(4);
      |                                     ^
./main.cpp:5:13: note: candidate: ‘std::set<T> makeSet(size_t) [with T = int; size_t = long unsigned int]’
    5 | std::set<T> makeSet( size_t off )
      |             ^~~~~~~
./main.cpp:13:14: note: candidate: ‘std::set<T*> makeSet(size_t) [with T = int; size_t = long unsigned int]’
   13 | std::set<T*> makeSet<T*>( size_t off )
      |              ^~~~~~~~~~~
./main.cpp:24:38: error: call of overloaded ‘makeSet<int*>(int)’ is ambiguous
   24 |   std::set<int*> s2 = makeSet<int*>(2);
      |                                      ^
./main.cpp:5:13: note: candidate: ‘std::set<T> makeSet(size_t) [with T = int*; size_t = long unsigned int]’
    5 | std::set<T> makeSet( size_t off )
      |             ^~~~~~~
./main.cpp:13:14: note: candidate: ‘std::set<T*> makeSet(size_t) [with T = int*; size_t = long unsigned int]’
   13 | std::set<T*> makeSet<T*>( size_t off )
      |              ^~~~~~~~~~~

我对此有点怀疑,因为它看起来像是试图重载具有不同返回类型但具有相同参数的函数 - 我知道这在其他方面是非法的,但我认为因为这些是模板函数,指定模板类型调用函数时(如上面的 main() )将允许消歧。

但我不确定编译器在第 13 行提示的是什么: non-class, non-variable partial specialization ‘makeSet<T*>’ is not allowed 是什么意思错误是什么意思?

我正在尝试做的事情甚至可能在 C++ 中实现吗? IE。是否可以制作一个模板函数,使其对指针和非指针模板类型的行为有所不同,并返回指定类型的 STL 容器? (C++ 98、03、11 和 14 之间的答案会有所不同吗?)

最佳答案

what does the non-class, non-variable partial specialization ‘makeSet<T*>’ is not allowed error mean?



让我们看一些文档from cppreference.com关于部分模板特化:

Allows customizing class [and variable (since C++14)] templates for a given category of template arguments.



类和变量模板允许部分特化。编译器告诉您,您的模板既不是用于变量的类。因此,不允许部分特化。

编译器消息的一个不太容易混淆的措辞是:不允许函数模板的部分特化。

至于能做什么,可以用合适的operator()声明一个类模板。 .在某些情况下,这与使用函数模板一样好。

关于c++ - 类与函数模板特化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61175932/

相关文章:

java - JSP 中的页眉、页脚、左侧和右侧模板

c++ - 模棱两可的错误 : template C++

c++ - 类成员函数模板可以是虚拟的吗?

c++ - 如何使用 usleep() 设置背景?

c++ - 我应该在像STL这样的代码中使用 `const T&`而不是 `T&&`吗

c++ - 模板的数据类型

c++ - 为什么我尝试使用 SFINAE 检测静态成员似乎不起作用?

c++ - 元编程,试图避免许多特化

c++ - 错误 Id 到错误字符串映射 - C++ 中的实现

c++ - 这是什么构造 : template <int> void funcName(int i)?