- 论坛徽章:
- 0
|
int main(int argc,char* argv[])
{
std::map<int, int> mapA;
mapA[1] = 11;
mapA[2] = 22;
MAPA::iterator itMapA = mapA.begin(); <---------------这一行报错
for (itMapA != mapA.end();++itMapA)
{
std::cout << itMapA->first << std::endl;
std::cout << itMapA->second << std::endl;
}
int i;
std::cin >> i;
return EXIT_SUCCESS;
}
------ 已启动生成: 项目: TestProject, 配置: Release Win32 ------
正在编译...
main.cpp
.\main.cpp(45) : error C2143: 语法错误 : 缺少“;”(在“)”的前面)
.\main.cpp(45) : error C2451: “std::_Tree<_Traits>::iterator”类型的条件表达式是非法的
with
[
_Traits=std::_Tmap_traits<int,int,std::less<int>,std::allocator<std::pair<const int,int>>,false>
]
没有可用于执行该转换的用户定义的转换运算符,或者无法调用该运算符
正在创建浏览信息文件...
Microsoft ?????????? Version 8.00.50727
Copyright (C) Microsoft Corporation. All rights reserved.
生成日志保存在“file://e:\练习\C++\TestProject\Release\BuildLog.htm”
TestProject - 2 个错误,0 个警告
========== 生成: 0 已成功, 1 已失败, 0 最新, 0 已跳过 ==========
将程序修改如下,编译就OK了:
int main(int argc,char* argv[])
{
std::map<int,int> mapA;
mapA[1] = 11;
mapA[2] = 22;
for (MAPA::iterator itMapA = mapA.begin();itMapA != mapA.end();++itMapA) <-------修改为这样程序编译就OK了
{
std::cout << itMapA->first << std::endl;
std::cout << itMapA->second << std::endl;
}
int i;
std::cin >> i;
return EXIT_SUCCESS;
}
不太明白,为什么不能把MAPA::iterator itMapA = mapA.begin();放在for条件表达式外,请高手指点一下。
[ 本帖最后由 agui1226 于 2008-7-6 23:59 编辑 ] |
|