为什么使用指向模板函子的指针作为 value_type 的 Map 不起作用?
当我尝试创建一个值类型为指向模板函子的指针的 std::map 时,Visual Studio 会崩溃。我在这里做违法的事情吗?
// Functor prototype
template< class T, class evenT>
class FunctionHandler {};
// std::Map definition
template <class T, class evenT>
map<int, FunctionHandler<T, evenT>* > lookup;
有人可以告诉我这是否是一个错误(以及为什么这是错误的)还是只是 Visual studio ?
Visual studio borks when I try to create a std::map with the value type being a pointer to template-functor. Am I doing something illegal here ?
// Functor prototype
template< class T, class evenT>
class FunctionHandler {};
// std::Map definition
template <class T, class evenT>
map<int, FunctionHandler<T, evenT>* > lookup;
Can someone please tell me if this is an error (and why is this wrong) or is it just Visual studio ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题是你不能有“变量模板”。这没有任何意义。
您需要创建一个具有特定类型的变量(即
T
和evenT
的特定值),或者执行以下操作:The problem is that you cannot have a "variable template". It doesn't make any sense.
You need to create a variable with a specific type (i.e. specific values for
T
andevenT
), or do something like: