打印

重载函数问题

[复制链接]
1009|4
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
xsgy123|  楼主 | 2013-10-31 16:49 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
编译的时候显示对重载函数调用不明确,求大神解答
#include <iostream>
#include "Circle2.h"
using namespace std;

void printCircle(Circle2 c)
{
    cout << "The area of the circle of "
        << c.getRadius() << " is " << c.getArea() << endl;
}

void printCircle(Circle2 *c)
{
    cout << "The area of the circle of "
        << c->getRadius() << " is " << c->getArea() << endl;
}

void printCircle(Circle2 &c)
{
    cout << "The area of the circle of "
        << c.getRadius() << " is " << c.getArea() << endl;
}

int main()
{
    Circle2 myCircle(5.0);
    //printCircle(myCircle);   这句调用时显示对重载函数调用不明确,为什么?注释掉就好了

    Circle2 myCircle2(10.0);
    printCircle(&myCircle2);

    Circle2 myCircle3(20.0);
    printCircle(&myCircle3);
    return 0;
}

相关帖子

沙发
秋天落叶| | 2013-10-31 17:01 | 只看该作者
Circle2 myCircle(5.0); -> const Circle2 myCircle(5.0); 加一个const

使用特权

评论回复
板凳
yybj| | 2013-10-31 18:22 | 只看该作者
一般出现在函数有若干重载版本,但你的调用都不属于任何版本,需要进行转换,但转换不明确的情况下出现
检查各个重载版本,将参数类型转换到最合适的版本类型的类型

使用特权

评论回复
地板
火箭球迷| | 2013-10-31 18:28 | 只看该作者
printCircle(myCircle);
执行哪个?
void printCircle(Circle2 c) {     cout << "The area of the circle of "        << c.getRadius() << " is " << c.getArea() << endl; }   

void printCircle(Circle2 &c) {     cout << "The area of the circle of "        << c.getRadius() << " is " << c.getArea() << endl; }

使用特权

评论回复
5
sinadz| | 2013-10-31 19:54 | 只看该作者
yybj 发表于 2013-10-31 18:22
一般出现在函数有若干重载版本,但你的调用都不属于任何版本,需要进行转换,但转换不明确的情况下出现
检 ...

分析的很对

使用特权

评论回复
发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

229

主题

2603

帖子

1

粉丝