新微赢技术网
标题:
关于使用map container后出现许多warnigs的解决办法
[打印本页]
作者:
ヤforget♀戀
时间:
2009-11-3 00:59
标题:
关于使用map container后出现许多warnigs的解决办法
程序源代码:
#include<map>
#include<iostream>
#include<vector>
#include<string>
using namespace std;
int main()
{
typedef vector<string> children;
map<string,children> family;
family["aa"].push_back("b");
family["aa"].push_back("bb");
family["cc"].push_back("d");
family["cc"].push_back("dd");
family["zz"].push_back("ff");
family["yy"].push_back("ee");
map<string,children>::iterator iter;
for(iter=family.begin();iter!=family.end();++iter)
{
cout<<(*iter).first<<":";
int cnt=0;
vector<string> names=(*iter).second;
vector<string>::iterator liter;
for(liter=names.begin();liter!=names.end();++liter)
{
if(cnt)
cout<<",";
else
cnt++;
cout<<*liter;
}
cout<<endl;
}
cout<<endl;
return 0;
}
程序功能:输出我设置的map信息
问题:
1,出现了146个warnings
2,我列出其中的warnings:
D:\programe\C++ primer\text\main.cpp(11) : see reference to class template instantiation 'std::map<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<
char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >,std::less<std::basic_string<char,std::char_traits<char>,std::allocator<char> > >,std::allocator<std::vector<std::basic_string<char,std::char_traits<char>
,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > > > >' being compiled
c:\program files\microsoft visual studio\vc98\include\xtree(120) : warning C4786: 'std::_Tree<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::pair<std::basic_string<char,std::char_traits<char>,std::allocator<char> > const ,
std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > > >,std::map<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,
std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >,std::less<std::basic_string<char,std::char_traits<char>,std::allocator<char> > >
,std::allocator<std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > > > >::_Kfn,std::less<std::basic_string<char,std::char_traits<char
>,std::allocator<char> > >,std::allocator<std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > > > >::const_iterator' : identifier was
truncated to '255' characters in the debug information
如果一条错误信息夹在里面,我根本没办法发现我的错误在那里?
3。这里的warings都是这样的:identifier was truncated to '255' characters in the debug information。
怎么解决这样的问题,是不是我少写了什么语句,请大虾指点:)谢谢:)
作者:
丑剑客
时间:
2009-11-3 00:59
我用borland C++编译了,没有warning。用VC6 debug模式下编译了124个warning。release模式下,编译2个warning。
作者:
假tp老tp练
时间:
2009-11-3 00:59
现在也不是很清楚是什么地方错了。根据报错信息,在vc6下,debug模式里,无法debug名字长度超过255个字符的代码。这里指的应该是你定义的family。在VC6中,你可以把鼠标放在family上,会看到一个很长的字符串。就是这个字符串,被debugger截断了,这样你在VC6中是无法观察这个变量的。
另外,出了error的话,你会在编译最后看到。确定错误信息,可以采用搜索的方法。
作者:
お妞妞☆
时间:
2009-11-3 00:59
怎么进入realse模式?谢谢:)
作者:
寻觅鼠
时间:
2009-11-3 00:59
以下是引用柳儿在2006-4-14 14:21:00的发言:
现在也不是很清楚是什么地方错了。根据报错信息,在vc6下,debug模式里,无法debug名字长度超过255个字符的代码。这里指的应该是你定义的family。在VC6中,你可以把鼠标放在family上,会看到一个很长的字符串。就是这个字符串,被debugger截断了,这样你在VC6中是无法观察这个变量的。
另外,出了error的话,你会在编译最后看到。确定错误信息,可以采用搜索的方法。
VC内部定义变量或容器都是这样定义的,比如string是:typedef basic_string<char,class char_traits<char>,class allocator<char>> string,那么我使用它自带的变量或容器,自然就会让我的定义的变量名名字长度超过255,那为什么它的编译器又要warnig呢??这是怎么回事?
作者:
痴人痴想
时间:
2009-11-3 00:59
在VC下用map时要在最开始写上
#pragma warning(disable: 4786)
欢迎光临 新微赢技术网 (http://bbs.weiying.cn/)
Powered by Discuz! X3.2