文字列クラスの>>演算子のオーバーロードに問題があります。これが私のクラスです:
class str
{
char s[250];
public:
friend istream& operator >> (istream& is, str& a);
friend ostream& operator << (ostream& os, str& a);
friend str operator + (str a, str b);
str * operator = (str a);
friend int operator == (str a, str b);
friend int operator != (str a, str b);
friend int operator > (str a, str b);
friend int operator < (str a, str b);
friend int operator >= (str a, str b);
friend int operator <= (str a, str b);
};
そしてここにオーバーロードされた演算子があります:
istream& operator >> (istream& in, str& a)
{
in>>a.s;
return in;
}
問題は、文字列を最初のスペース(文から1単語のみ)までしか読み取らないことです。
私はそれを解決しました。dreamincodeで答えを見つけました:D