これが私のプログラムです:
#include <iostream>
#include <string>
using namespace std;
template <class T>
class Example
{
private:
T data;
public:
Example() { data = 0; }
void setData(T elem) { data = elem; }
template <class U>
friend ostream& operator << (ostream &, const Example<U>&);
friend ostream& operator << (ostream &, const Example<char>&);
friend string operator + (const Example<char> &, const Example<char> &);
template <class U>
friend U operator + (const Example<U> &, const Example<U> &);
};
template <class U>
U operator + (const Example<U> &a, const Example<U> &b)
{
U c;
c = a+b;
return(c);
}
string operator + (const Example<char> &a, const Example<char> &b)
{
string a1("");
a1+=a.data;
a1+=b.data;
return(a1);
}
template <class T>
ostream& operator << (ostream &o, const Example<T> &t)
{
o << t.data;
return o;
}
ostream& operator << (ostream &o, const Example<char> &t)
{
o << "'" << t.data << "'";
return o;
}
int main()
{
Example<int> tInt1, tInt2;
Example<char> tChar1, tChar2;
tInt1.setData(15);
tInt2.setData(30);
tChar1.setData('A');
tChar2.setData('B');
cout << tInt1 << " + " << tInt2 << " = " << (tInt1 + tInt2) << endl;
cout << tChar1 << " + " << tChar2 << " = " << (tChar1 + tChar2) << endl;
return 0;
}
2 つの文字を返すことができる文字列にするにはどうすればよいですか? 私は複数の方法を試しましたが、どれも機能しないようです。文字が参照渡しされていることに関係があるのではないかと思います。
編集:わかりましたので、その特定の機能を問題なく動作させました。これでコンパイルできましたが、何かが表示される前にセグメンテーション違反が発生しました。U データ型の加算に問題があります。A と B を加算して AB を返しますが、15 と 30 を加算しません。また、ご協力いただきありがとうございます。私はまだプログラミングに慣れていないので、本当に感謝しています。