x*****n 发帖数: 3422 | 1 请看看哪里有问题?
// temp.cpp, test stl iterator
#include
#include
#include
using namespace std;
template void print(const set& mySet, const string& name)
{
set::const_iterator i;
}
int main()
{
}
// end of file
cygwin下g++ 3.4.4:
$ g++ temp.cpp
temp.cpp: In function `void print(const std::s
tor<_CharT> >&, const std::string&)':
temp.cpp:11: error: expected `;' before "i"
linux下g++ 3.2.3:
temp.cpp: In function `void print(const std::set,
| x*****n 发帖数: 3422 | 2 I got it. Now we need:
typename set::const_iterator i;
【在 x*****n 的大作中提到】 : 请看看哪里有问题? : // temp.cpp, test stl iterator : #include : #include : #include : using namespace std; : template void print(const set& mySet, const string& name) : { : set::const_iterator i; : }
|
|