当前位置:  开发笔记 > 编程语言 > 正文

为什么我不能在std :: list中存储boost :: function?

如何解决《为什么我不能在std::list中存储boost::function?》经验,为你挑选了1个好方法。

我收到以下编译错误:

error: expected `;' before 'it'"

这是我的代码:

#include 
#include 

template< class T >
void example() {
    std::list< boost::function >::iterator it;
}

为什么会这样?我该如何解决?



1> Johannes Sch..:

您需要放在typename该行的前面,因为您执行:: iterator的类型取决于模板参数T.像这样:

template< class T >
void example() {
    typename std::list< boost::function >::iterator it;
}

考虑一下这条线

std::list< boost::function >::iterator * it; 

这可能意味着乘法或指针.这就是为什么你需要typename明确你的意图.没有它,编译器假定不是一个类型,因此它需要一个运算符或语法分号.


另请参阅新的C++ FAQ条目将依赖名称上的模板和typename放在何处.

推荐阅读
mylvfamily
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有