| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 3565 人关注过本帖
标题:vs2015对于重载对于重载函数调用不明确的困惑
取消只看楼主 加入收藏
zerahfan
Rank: 1
等 级:新手上路
帖 子:6
专家分:0
注 册:2017-3-1
结帖率:0
收藏
已结贴  问题点数:5 回复次数:0 
vs2015对于重载对于重载函数调用不明确的困惑
程序代码:
#include<iostream>
using namespace std;


class CCopmlex
{
private:
    double m_real, m_unreal;//实数,虚数
public:
    CCopmlex();
    CCopmlex(double r = 0, double u = 0);
    CCopmlex operator+(const CCopmlex &t);
    friend void print(const CCopmlex &t);
};
CCopmlex::CCopmlex()
{
    m_real = 0;
    m_unreal = 0;
}
CCopmlex::CCopmlex(double r, double u)
{
    m_real = r;
    m_unreal = u;
}
inline CCopmlex CCopmlex::operator+(const CCopmlex &t)//重载运算符
{
    return CCopmlex(m_real + t.m_real, m_unreal + t.m_unreal);

}


void  print(const CCopmlex &t)
{
    if (t.m_unreal < 0)
        cout << t.m_real << t.m_unreal << "i" << endl;
    cout << t.m_real << "+" << t.m_unreal << "i" << endl;
}

int main()
{
    CCopmlex p1(2.0, 3.0), p2(4.0, 2.3);
    CCopmlex p3;
    p3 = p1 + p2;
    cout << "the answer is";
    print(p3);

    return 0;
}

总是提示类包含多个默认构造函数;对重载函数调用不明确
搜索更多相关主题的帖子: double 
2017-06-07 14:26
快速回复:vs2015对于重载对于重载函数调用不明确的困惑
数据加载中...
 
   



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

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