| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 749 人关注过本帖
标题:头文件编译错误问题
取消只看楼主 加入收藏
sixmore
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2011-1-26
结帖率:100%
收藏
已结贴  问题点数:10 回复次数:0 
头文件编译错误问题
编译这样一个头文件时,提示红色行有很多错误
 #ifndef GUARD_split
 #define GUARD_split
 #include<vector>
 #include<string>
 std::vector<string> split( const std::string&);
#endif

接着 加了一句 using namespace std;编译就没问题了, 分析应该是std::string有问题,请问应该怎么修改才行?
 #ifndef GUARD_split
 #define GUARD_split
 #include<vector>
 #include<string>
 using namespace std;
 vector<string> split( const string&);
 #endif
搜索更多相关主题的帖子: include 
2011-02-24 23:38
快速回复:头文件编译错误问题
数据加载中...
 
   



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

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