gpt4 book ai didi

c++ - 错误 : ‘traits’ is not a template - C++

转载 作者:搜寻专家 更新时间:2023-10-31 02:00:11 25 4
gpt4 key购买 nike

我在使用模板时遇到了一个非常奇怪的问题。出现错误 error: ‘traits’ is not a template。我无法在示例测试项目中重现该问题。但它发生在我的项目中(比我在这里发布的要大)。

无论如何,以下是我的文件和用法。有人知道此错误何时发生吗?

我在 traits.hpp 中有以下内容。

namespace silc 
{
template<class U>
struct traits<U>
{
typedef const U& const_reference;
};

template<class U>
struct traits<U*>
{
typedef const U* const_reference;
};
}

这在另一个头文件中使用。

namespace silc {

template<typename T>
class node {
public:

typedef typename traits<T>::const_reference const_reference;

const_reference value() const {
/* ... */
}
}
}

最佳答案

模板特化的语法……不愉快。

我相信可以通过替换 struct traits<U> 来修复您的错误通过 struct traits (但保留 struct traits<U*> 原样!)。

但往好的方面看!至少你没有对函数类型进行部分特化:

// Partial class specialization for
// function pointers of one parameter and any return type
template <typename T, typename RetVal>
class del_ptr<T, RetVal (*)(T*)> { ... };

// Partial class specialization for
// functions of one parameter and any return type
template <typename T, typename RetVal>
class del_ptr<T, RetVal(T*)> { ... };

// Partial class specialization for
// references to functions of one parameter and any return type
template <typename T, typename RetVal>
class del_ptr<T, RetVal(&)(T*)> { ... };

关于c++ - 错误 : ‘traits’ is not a template - C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2304989/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com