很抱歉,这听起来像是一个常见问题,就我所看到的而言,我找不到问题的答案。最接近的帖子是:Template Specialization for basic POD only
假设我有一个 class template <class T> class A {...};
,我想重载 operator+ 作为内部二元运算符(A 类型的两个对象)和混合二元运算符(A 类型和数字 POD 类型的对象)。
理想情况下,我想写的是:
#include <type_traits>
using namespace std;
// Declare/fine template
template <class T> class A {...};
// Internal binary operator
template < class T, class U >
A< typename common_type<T,U>::type >
operator+ ( const A<T> &a, const A<U> &a ) { ... }
// Mixed binary operator
template < class T, class U >
A< typename common_type<T,U>::type >
operator+ ( const A<T> &a, const U &b ) { ... }
但似乎第二个定义与第一个定义相冲突。使用第二个定义,我知道如何确保 U 是数字 POD 类型,这不是重点。如果我这样做,问题是我无法知道 U 中包含的底层模板类型(如果它是某个 A)。
如果我的问题不够清楚,请告诉我,并提前感谢!:)
编辑:模板规范被 HTML 过滤器清除,在我的最后一句“U if it is some A<T>
”中。简而言之,我是说 T 是隐藏的。