| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 369 人关注过本帖
标题:请问这错误怎么回事?
取消只看楼主 加入收藏
a99875984
Rank: 2
等 级:论坛游民
帖 子:188
专家分:24
注 册:2012-2-11
结帖率:94.64%
收藏
已结贴  问题点数:20 回复次数:0 
请问这错误怎么回事?
程序代码:
#include<iostream>
using namespace std;
class time
{
private:
    int h,m,s;
public:
    time (int a,int b,int c);
    void operator +(time t1);
    void operator -(time t1);
    void shuchu();
};

time::time(int a,int b,int c)
{
    h=a;
    m=b;
    s=c;
    cout<<h<<":"<<m<<":"<<s<<endl;
}

void  time::operator +(time t1)
{
    s=s+t1.s;
    if(s>=60)
    {
        s-=60;
        m++;
    }
    m=m+t1.m;
    if(m>=60)
    {
        m-=60;
        h++;
    }
    h=h+t1.h;
}
void time::operator -(time t1)
{
    s=s+t1.s;
    if(s<0)
    {
        s+=60;
        m--;
    }
    m=m+t1.m;
    if(m<0)
    {
        m+=60;
        h--;
    }
    h=h+t1.h;
}

void time::shuchu()
{
    cout<<h<<":"<<m<<":"<<s<<endl;
}
int main()
{
    int a,b,c,d,e,f;
    cin>>a>>b>>c>>d>>e>>f;
    time t1(a,b,c),t2(d,e,f),t3(0,0,0);
    t3=t1+t2;        //no operator defined which takes a right-hand operand of type 'void' (or there is no acceptable conversion)  这是什么意思啊?
    t3.shuchu();
    return 0;
}
搜索更多相关主题的帖子: color 
2012-06-12 15:07
快速回复:请问这错误怎么回事?
数据加载中...
 
   



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

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