| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 554 人关注过本帖
标题:自己调试不来TT
取消只看楼主 加入收藏
未未来
Rank: 3Rank: 3
等 级:论坛游侠
威 望:1
帖 子:182
专家分:157
注 册:2012-11-6
结帖率:94.87%
收藏
已结贴  问题点数:5 回复次数:0 
自己调试不来TT
程序代码:
编写的函数放在这个文件里   get.hpp
复制内容到剪贴板
代码:
istream& get(istream& in){
int i;
        while(in>>i,!in.eof()){
                if(in.bad())
                throw runtime_error("IO stream corrupted");
                if(in.fail()){
                cerr<<"bad data,try again";
                        in.clear;
                        in.ignore(200,'');
                        continue;
                }
        cout<<i<<endl;        
}
in.clear();
return in;}
在这个源函数里调用
复制内容到剪贴板
代码:
#include"get.hpp"
#include<iostream>
#include<stdexcept>
using namespace::std;

int main(){
        double j;
                cin>>j;
        get(cin);

        return 0;
}
出现了
--------------------配置: mingw5 - CUI Release, 编译器类型: MinGW--------------------


检查文件依赖性...
正在编译 C:\Users\Think\Desktop\习题\8.4.cpp...
[Error] C:\Users\Think\Desktop\习题\get.hpp:2: error: expected constructor, destructor, or type conversion before '&' token
[Error] C:\Users\Think\Desktop\习题\get.hpp:10:18: empty character constant
[Warning] C:\Users\Think\Desktop\习题\get.hpp:16:12: warning: no newline at end of file
[Error] C:\Users\Think\Desktop\习题\8.4.cpp:9: error: `get' was not declared in this scope
[Warning] C:\Users\Think\Desktop\习题\8.4.cpp:12:2: warning: no newline at end of file

构建中止 8.4: 3 个错误, 2 个警告
这种错误 ,求指导
搜索更多相关主题的帖子: 8000 剪贴板 color 
2013-03-18 17:25
快速回复:自己调试不来TT
数据加载中...
 
   



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

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