| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 689 人关注过本帖
标题:vc编译器竟然也能睁着眼睛说瞎话
只看楼主 加入收藏
vfdff
Rank: 6Rank: 6
等 级:侠之大者
威 望:8
帖 子:2172
专家分:425
注 册:2005-7-15
结帖率:79.17%
收藏
 问题点数:0 回复次数:6 
vc编译器竟然也能睁着眼睛说瞎话
看附图,我对代码
#include <iostream>
#include <string>
#include <vector>

using namespace std;

using std::vector;
using std::string;
using std::cin;
using std::cout;
using std::endl;

int main()
{
    string word;
    vector<string> text;
    while(cin>>word)
    {
        text.push_back(word);
   
    }
    for(vector<string>::iterator i=text.begin(); i != text.end(); ++i)
        cout<<(*i)<<endl;
   
    cout<<endl;  

    return 0;
}进程编译,明明在上面提示了很多歌警告
却在最后一行显示 test.exe - 0 error(s), 0 warning(s)?

int.JPG (136.62 KB)
图片附件: 游客没有浏览图片的权限,请 登录注册
搜索更多相关主题的帖子: 睁着眼睛说瞎话 
2008-11-14 16:48
woshiyun
Rank: 1
等 级:新手上路
威 望:2
帖 子:348
专家分:0
注 册:2008-6-16
收藏
得分:0 
--------------------Configuration: Cpp1 - Win32 Debug--------------------
Compiling...
Cpp1.cpp
e:\my documents\新建文件夹\cpp1.cpp(28) : warning C4786: 'std::reverse_iterator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > const *,std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::basic_string<char,
std::char_traits<char>,std::allocator<char> > const &,std::basic_string<char,std::char_traits<char>,std::allocator<char> > const *,int>' : identifier was truncated to '255' characters in the debug information
e:\my documents\新建文件夹\cpp1.cpp(28) : warning C4786: 'std::reverse_iterator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > *,std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::basic_string<char,std::c
har_traits<char>,std::allocator<char> > &,std::basic_string<char,std::char_traits<char>,std::allocator<char> > *,int>' : identifier was truncated to '255' characters in the debug information
d:\program files\microsoft visual studio\vc98\include\vector(39) : warning C4786: '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> > >
 >::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> > > >' : identifier was truncated to '255' characters in the debug information
d:\program files\microsoft visual studio\vc98\include\vector(60) : warning C4786: '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> > >
 >::~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> > > >' : identifier was truncated to '255' characters in the debug information
Linking...

Cpp1.exe - 0 error(s), 4 warning(s)
2008-11-14 21:14
woshiyun
Rank: 1
等 级:新手上路
威 望:2
帖 子:348
专家分:0
注 册:2008-6-16
收藏
得分:0 
0 error(s), 4 warning(s)
VC哪里错了?
2008-11-14 21:16
vfdff
Rank: 6Rank: 6
等 级:侠之大者
威 望:8
帖 子:2172
专家分:425
注 册:2005-7-15
收藏
得分:0 
回复 3# 的帖子
我的编译器 最后一行是  test.exe - 0 error(s), 0 warning(s)(参见附图

~~~~~~~~~~~~~~~好好学习~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2008-11-14 23:36
dreamstring
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2008-11-11
收藏
得分:0 
请问这个程序为什么会有warning呢?我刚学到这里,编了一个相同的程序,也有4个warning,不知道是为什么~~
2008-11-15 16:27
vfdff
Rank: 6Rank: 6
等 级:侠之大者
威 望:8
帖 子:2172
专家分:425
注 册:2005-7-15
收藏
得分:0 
回复 5# 的帖子
刚才把 string类型改成内建类型就没有警告了
不知道是不是因为容器一般作用于 非内建类

~~~~~~~~~~~~~~~好好学习~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2008-11-15 22:50
dreamstring
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2008-11-11
收藏
得分:0 
弱问~~~什么是内建类型~~
2008-11-16 12:28
快速回复:vc编译器竟然也能睁着眼睛说瞎话
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.017212 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved