鱼C论坛

 找回密码
 立即注册
查看: 1575|回复: 2

对重载函数调用不明确

[复制链接]
发表于 2016-7-27 19:14:35 | 显示全部楼层 |阅读模式
10鱼币
对重载函数调用不明确,搞不懂
和书上一样却编译不了
#include <iostream>
#include <cstdlib>

using namespace std;
template <typename T>
void swap(T & a, T & b);
int main()
{
    int i=10;
    int j=20;
    cout<<"i,j = "<<i<<", "<<j<<endl;
    cout<<"using compiler generated int swaper:\n";
    swap(i,j);
    cout<<"i,j = "<<i<<", "<<j<<endl;
    double x = 24.5;
    double y = 81.7;
    cout<<"x,y = "<<x<<", "<<y<<endl;
    cout<<"using compiler generated int swaper:\n";
    swap(x,y);
    cout<<"x,y = "<<x<<", "<<y<<endl;
    system("pause");
    return 0;
}
template <typename T>
void swap(T & a, T & b)
{
     T temp;
     temp = a;
     a = b;
     b = temp;
}

最佳答案

查看完整内容

因为用了using namespace std; 内置的swap是在std空间的 所以会有两个swap函数 要么改下函数名 要么去掉using namespace std, 在cout endl前加std::就ok
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2016-7-27 19:14:36 | 显示全部楼层
因为用了using namespace std; 内置的swap是在std空间的 所以会有两个swap函数 要么改下函数名 要么去掉using namespace std, 在cout endl前加std::就ok
#include <iostream>
#include <windows.h>


template <typename T>
void swap(T &a, T &b) {
     T temp;
     temp = a;
     a = b;
     b = temp;
}
int main()
{
    
    int i=10;
    int j=20;
    std::cout<<"i,j = "<<i<<", "<<j<<std::endl;
    std::cout<<"using compiler generated int swaper:\n";
    swap(i,j);
    std::cout<<"i,j = "<<i<<", "<<j<<std::endl;
    double x = 24.5;
    double y = 81.7;
    std::cout<<"x,y = "<<x<<", "<<y<<std::endl;
    std::cout<<"using compiler generated int swaper:\n";
    swap(x,y);
    std::cout<<"x,y = "<<x<<", "<<y<<std::endl;
    system("pause");
    
    return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2016-7-27 19:22:29 | 显示全部楼层
swap是系统里一个函数,在名称空间std中,重载了swap函数,改掉函数名成功编译
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-27 06:18

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表