quot;invalid use of incomplete typequot; error with partial template specialization(“不完整类型的无效使用部分模板特化错误)
问题描述
以下代码:
template <typename S, typename T>
struct foo {
void bar();
};
template <typename T>
void foo <int, T>::bar() {
}
给我错误
invalid use of incomplete type 'struct foo<int, T>'
declaration of 'struct foo<int, T>'
(我正在使用 gcc.)我的部分专业化语法错误吗?请注意,如果我删除第二个参数:
(I'm using gcc.) Is my syntax for partial specialization wrong? Note that if I remove the second argument:
template <typename S>
struct foo {
void bar();
};
template <>
void foo <int>::bar() {
}
然后它就可以正确编译了.
then it compiles correctly.
推荐答案
你不能部分特化一个函数.如果您希望在成员函数上这样做,则必须部分特化整个模板(是的,这很烦人).在大型模板化类上,要部分专门化一个函数,您需要一种解决方法.也许模板成员结构(例如 template
)会起作用.或者,您可以尝试从另一个部分专门化的模板派生(如果您使用 this->member
表示法,则可以使用,否则您会遇到编译器错误).
You can't partially specialize a function. If you wish to do so on a member function, you must partially specialize the entire template (yes, it's irritating). On a large templated class, to partially specialize a function, you would need a workaround. Perhaps a templated member struct (e.g. template <typename U = T> struct Nested
) would work. Or else you can try deriving from another template that partially specializes (works if you use the this->member
notation, otherwise you will encounter compiler errors).
这篇关于“不完整类型的无效使用"部分模板特化错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:“不完整类型的无效使用"部分模板特化错误


基础教程推荐
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01