我必须创建一个 istream 运算符重载函数来读取用户输入的数据。该函数假设在忽略字符的同时读取单个字符和单个数字,因为假设只输入和打印数字。它读取进来的数据,但是当我的数据被打印出来时,它会打印出奇怪的符号。我正在提供我的 istream>> 函数以及我的 output<< 函数,尽管我很确定问题必须在 istream 内部的某个地方。如果有人能看到一个很棒的错误,因为我整天都在处理这个问题。
friend ostream& operator<< (ostream& os, const MyInt& x);
friend istream& operator>> (istream& is, MyInt& x);
ostream& operator<< (ostream& oS, const MyInt& x)
{
for (int i = 0; i < x.currentSize; i++)
{
oS << x.digitList[i];
}
return oS;
}
istream& operator>> (istream& is, MyInt& x)
{
char c;
x.currentSize = 0;
x.maxSize = 5;
c = is.peek();
while(!isdigit(c))
{
is.ignore();
c = is.peek();
}
while(isdigit(c))
{
c =is.get();
x.digitList[x.currentSize] = C2I(c);
x.currentSize++;
c = is.peek();
if(x.currentSize >= x.maxSize)
x.Grow();
}
return is;
}