- 论坛徽章:
- 0
|
template<class T>
class CCommList
{
public:
CCommList();
virtual ~CCommList();
void Clear();
private:
std::list<T*> infolist;
};
template<class T>
CCommList<T>::CCommList()
{
}
template<class T>
CCommList<T>::~CCommList()
{
}
template<class T>
void CCommList<T>::Clear()
{
list<T*>::iterator info_iter = infolist.begin();
for (; info_iter!=infolist.end(); info_iter++)
{
delete &*info_iter;
}
infolist.clear();
}
int main()
{
return (0);
}
//====================================================
Compiling source file(s)...
Main.cpp
Main.cpp: In member function `void CCommList<T>::Clear()':
Main.cpp:128: error: expected `;' before "info_iter"
Main.cpp:129: error: `info_iter' undeclared (first use this function)
Main.cpp:129: error: (Each undeclared identifier is reported only once for each function it appears in.)
TTemplate.exe - 3 error(s), 0 warning(s)
//====================================================
MinGW developer studio (GCC3.4.2) 请教各位高手,是哪出了问题..谢谢!!
在VC++6.0下相同代码编译没有显示错误!! |
|