0

我必须创建一个 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;

}

4

1 回答 1

0

在这里,您将 ASCII 数字转换为一些内部表示:

x.digitList[x.currentSize] = C2I(c);

但是当您执行输出时,没有其他方向的翻译,回到文本。

于 2013-11-06T02:36:09.840 回答