GCC 模板问题
我想使用下面的垃圾收集器,但是当我编译时,我在 GCC 中遇到很多错误,但在 VSC++ 中却没有,即这个。
列表
--->预期的 ';'表达式之后
这是图书馆。
http:// www.devarticles.com/c/a/Cplusplus/A-Simple-Garbage-Collector-for-C-plus-plus/3/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设
T
是模板参数,您需要一个typename
:有关何时以及为何需要
typename
的更多信息,请参阅 Stack Overflow C++ 常见问题解答 < a href="https://stackoverflow.com/questions/610245/where-and-why-do-i-have-to-put-template-and-typename-on-dependent-names">"在哪里以及为什么这样做我必须将template
和typename
放在依赖名称上吗?”Assuming
T
is a template parameter, you need atypename
:For more about when and why
typename
is required, see the Stack Overflow C++ FAQ "Where and why do I have to puttemplate
andtypename
on dependent names?"