5

このプログラムでは、オーバーロードされた関数の呼び出しと呼ばれるエラーを発生させるスワップ関数の呼び出しが曖昧です。この問題を解決する方法を教えてください。テンプレート関数を呼び出す別の方法はありますか

     #include<iostream>
    using namespace std;
      template <class T>
    void swap(T&x,T&y)
    {
            T temp;
            temp=x;
         x=y;
           y=temp;
       }
    int main()
   {
    float f1,f2;
    cout<<"enter twp float numbers: ";
    cout<<"Float 1: ";
     cin>>f1;
    cout<<"Float 2: ";
    cin>>f2;
    swap(f1,f2);
    cout<<"After swap: float 1: "<<f1<<" float 2:"<<f2;
    int a,b;
    cout<<"enter twp integer numbers: ";
    cout<<"int 1: ";
    cin>>a;
    cout<<"int 2: ";
    cin>>b;
    swap(a,b);
    cout<<"After swap: int 1: "<<a<<" int 2:"<<b;
    return 0;
    }
4

3 に答える 3

1

swap 関数を my_swap 関数に変更すると、問題が解決します。swap も C++ の定義済み関数であるため

#include<iostream>
using namespace std;
  template <class T>
void my_swap(T&x,T&y)
{
        T temp;
        temp=x;
     x=y;
       y=temp;
   }
int main()
{
  float f1,f2;
cout<<"enter twp float numbers: ";
cout<<"Float 1: ";
 cin>>f1;
cout<<"Float 2: ";
cin>>f2;
my_swap(f1,f2);
cout<<"After swap: float 1: "<<f1<<" float 2:"<<f2;
int a,b;
cout<<"enter twp integer numbers: ";
cout<<"int 1: ";
cin>>a;
cout<<"int 2: ";
cin>>b;
my_swap(a,b);
cout<<"After swap: int 1: "<<a<<" int 2:"<<b;
return 0;
}
于 2013-11-05T13:18:24.393 に答える