尝试创建一个对象并将其打印到输出

Trying to create an object and print it to output

本文关键字:打印 输出 创建 一个对象      更新时间:2023-10-16

嗨,我有一个多项式类,我正试图将多项式打印到屏幕上,但我有问题。我创建了一个方法,在方法中对象(多项式)打印,但是当我试图从方法外部打印它时,它不会让我相信我没有正确创建对象。当我在main中包含create()方法时,对象将自己打印到屏幕上,但当我使用printscreen()方法时,它不打印。如有任何帮助,不胜感激。

我重新发布了整个代码,以避免任何混乱

    #include "stdafx.h"
    #include <vector>
    #include <iostream>


    using namespace std;
    class Polynomial
    {
    private:
int coef[100];
int deg;
    public:
Polynomial::Polynomial()
//~Polynomial(void);
{
    for ( int i = 0; i < 100; i++ )
    {
        coef[i] = 0;
    }
}
void set ( int a , int b )
{
    coef[b] = a;
    deg = degree();
}
int degree()
{
    int d = 0;
    for (int i = 0; i < 100; i++ )
        if ( coef[i] != 0 ) d = i;
    return d;
}
void print()
{
    for ( int i = 99; i >= 0; i-- ) {
        if ( coef[i] != 0 ) {
            cout << coef[i] << "x^" << i << " "; 
        }
    }
}
void reset()
{
    for ( int i = 99; i >= 0; i-- ) {
        if ( coef[i] != 0 ) {
            coef[i] = 0; 
        }
    }
}
int count()
{
    int ct = 0;
    for ( int i = 99; i >= 0; i-- ) {
        if (coef[i] != 0 ) {
            ct++;
            return ct;
        }
    }
}

Polynomial plus ( Polynomial b )
{
    Polynomial a = *this;
    Polynomial c;
    for ( int i = 0; i <= a.deg; i++ ) c.coef[i] += a.coef[i];
    for ( int i = 0; i <= b.deg; i++ ) c.coef[i] += b.coef[i];
    c.deg = c.degree();
    return c;

}
    Polynomial minus ( Polynomial b )
    {
    Polynomial a = *this; //a is the poly on the L.H.S
    Polynomial c;
     for ( int i = 0; i <= a.deg; i++ ) c.coef[i] += a.coef[i];
     for ( int i = 0; i <= b.deg; i++ ) c.coef[i] -= b.coef[i];
     c.deg = c.degree();
     return c;
     }
     void printscreen () const
     {
 //Polynomial a;
 std::cout << "Your polynomial is ";
 this->print();
     }
     Polynomial create ()
 {
  int temp = 0;
  int terms = 0;
  int exp = 0;
  int n = 0;
  Polynomial a = *this;
  cout << "How many terms would you like there to be in your polynomial?";
  cin >> terms;
  for ( int i = 1; i <= terms; i++ ){
    n++;
    cout << "n";
    cout << "What would you like to be your coefficient #"; cout << n; cout << "?";
    cin >> temp;
    cout << "What would you like to be your exponent #"; cout << n; cout << "?";
    cin >> exp;
    a.set ( temp, exp );
    }
    cout << "Your polynomial is "; a.print();
    return a;
     }
    };
    void menu (void)
    { cout<<endl<<endl;
    cout<<"What would you like to do next?  Please select from the following menu:"   <<endl;
    cout<<"1.  Create another polynomial"<<endl;
    cout<<"2.  Reset the polynomial"<<endl;
    cout<<"3.  Display the number of terms in the polynomial"<<endl;
    cout<<"4.  Sum the polynomials"<<endl;
    cout<<"5.  Print the polynomial"<<endl;
    cout<<"6. Quit"<<endl<<endl;
    cout<<"Enter selection>";
    }
    int _tmain(int argc, _TCHAR* argv[])
    {

    Polynomial a, b, c;
int choice;

a.create();
do {
  menu();
  cin>>choice;
  switch (choice) {
    case 1 :a.create();
            cout<<endl;
            break;
    case 2 : a.reset();
            cout<<endl<<"The polynomial has been reset."<<endl;
            break;
    case 3: cout<<endl<<"Length is ";//<<a.length()<<endl;
            break;
    case 4: cout<<endl<<"Sum is "; a.plus(b);//<<s.sum()<<endl;
            break;
    case 5: printscreen(a);
            break;
    case 6: cout<<endl<<"Thanks and goodbye."<<endl;
            break;
    default :  cout<<endl<<"Invalid command.  Try again."<<endl;
  }
     } while (choice != 6);

使用

void printscreen (const Polynomial& a)
{
 cout<<"Your polynomial is "; a.print();
}

printscreen(a); 

create()中,你说:

{
  Polynomial a;
  //...
  a.set (temp, exp);
  //...
  a.print();
}

另一方面,在printscreen()中,你说,

{
  Polynomial a;
  a.print();
}

显然,建立多项式的关键步骤完全缺失了。

所有这些设置可能应该在Polynomial类的成员函数中进行,而不是在自由函数中…

顺便说一下,c++中没有术语"方法";相反,我们更喜欢说"成员函数",但你的问题中似乎没有定义任何成员函数。

如果我猜上下文错误,所有这些实际上是成员函数,然后将printscreen()更改为:

void printscreen() const   // in global scope this is "Polynomial::printscreen()"
{
  std::cout << "Your polynomial is ";
  this->print();
}