作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有人可以帮我将以下代码移植到 GCC 吗?我在这个网站上发现了很多或相关的问题,但我似乎无法在我的案例中应用建议的解决方法......
typedef float MyData __attribute__ ((__vector_size__ (16)));
template <typename T> class Data_T
{
public:
template < typename U > static bool IsEqual (const T & a, const T & b)
{
return a == b;
}
//Fixed: template <> static bool IsEqual < MyData > ( const MyData & a, const MyData & b)
static bool IsEqual ( const MyData & a, const MyData & b)
{
return true;
}
void TriggerProblem(const T & val)
{
if (!IsEqual(1.0f, val)) // Error: no matching function for call to 'Data_T<float>::IsEqual(float, const float&)'
{
}
}
};
触发问题的代码:
Data_T<MyData> inst;
inst.TriggerProblem(1.0f);
我收到一个错误错误:在非命名空间范围'class Data_T'中显式特化,这是由特化函数IsEqual()引起的,但现在遇到了另一个错误类型(没有匹配函数调用 'Data_T::IsEqual(float, const float&)'),这似乎是由 __vector_size__ 属性引起的,我无法删除。请帮助...
最佳答案
在这种情况下,重载就足够了,而不是特化:
template <typename T> class Data_T
{
public:
template<typename U> static bool IsEqual(const U& a, const U& b)
{
return a == b;
}
static bool IsEqual(const MyData& a, const MyData& b)
{
return MyDataTypeIsEqual (a, b);
}
template<typename U> bool IsRangeEqual(const U& a, const U& b, const U& delta)
{
return (a >= b) ? (a - b <= delta) : (b - a <= delta);
}
bool IsRangeEqual(const MyData & a, const MyData & b, const MyData & accuracy)
{
return MyDataTypeIsRangeEqual (a, b, accuracy);
}
};
关于更新的编辑:
虽然对我来说,从 float
到 float __vector__
的转换已经失败,但您似乎有一个拼写错误:
template<typename U> static bool IsEqual(const T& a, const T& b)
对比:
template<typename U> static bool IsEqual(const U& a, const U& b)
我相应地修复了上面的代码。
关于c++ - 非命名空间范围错误的显式特化...迫切需要帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5714665/
我是一名优秀的程序员,十分优秀!