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

标签 c++ visual-studio-2008

您好,我有一个多项式类,我正在尝试将多项式打印到屏幕上,但遇到了问题。我创建了一个方法,并在该方法中打印了对象(多项式),但是当我尝试从方法外部打印它时,它并没有打印出来,这让我相信我没有正确创建对象。当我在 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); 

关于c++ - 尝试创建一个对象并将其打印到输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7381993/

相关文章:

visual-studio - 在LINQ to SQL设计器中刷新表时出现问题

c# - IIS调试在Windows 2012服务器IIS 8.0

visual-studio-2008 - 是否可以在Visual Studio 2008中更改语言?

c++ - 使用单个条件变量暂停多个线程

c++ - 如何读取已在使用的文本文件 (Windows C++)

c++ - 如何在主函数中创建 Parcel2 类的对象

c++ - 无法将 ncurses 与 Qt 链接

visual-studio-2008 - 在 Visual Studio 2008 中使用 ILDASM

c++ - Visual C++ 窗体、简单消息框和将文本从文本字段分配给字符串时出错

c++ - 奇怪的输出 : why would this code give any meaningful output, 更不用说这个了?