代码之家  ›  专栏  ›  技术社区  ›  Nom OnTheCookie

使用向量重载C++输出

  •  2
  • Nom OnTheCookie  · 技术社区  · 6 年前

    o、 我试图为向量创建一个重载输出操作符。这个重载输出操作符允许我将向量中的值打印为

    [数据]^[索引] 例如,如果索引3处的数据为4,则应打印3^4。

    然而,我似乎无法让它正常工作。我需要它遍历整个向量,但我似乎无法检测出我做错了什么。

    下面是标题中的函数。

    friend ostream & operator << (ostream &out, const vector<int> &c);
    

    下面是我在源文件中对函数的内容。

    ostream & operator << (ostream &os, const vector<int> &c)
    {
        for (int i = 0; i < c.size(); i++)
        {
            os << c.at[i];
            os << "^";
            os << i;
    
        }
        return os;
    

    最后,这是我的主要

    #include "Polynomial.h"
    #include <string>
    #include <vector>
    #include <utility>
    
    
    int main()
    {
        vector<int> poly1(10);
        vector<int> poly2(10);
        int x;
        int y;
    
        int choice;
        bool done = true;
    
        std::cout << "What do you wish to do?" << std::endl;
        std::cout << "1. Add two polynomials" << std::endl;
        std::cout << "2. Multiply two polynomials" << std::endl;
        std::cout << "3. Evaluate one polynomial at a given value" << std::endl;
        std::cout << "4. Find Coefficent for a given polynomial and given exponent" << std::endl;
        std::cout << "5. Find the leading exponent for a given polynomial" << std::endl;
        std::cout << "6. Exit "<< std::endl;
    
        std::cin >> choice;
    
        if (choice < 1 || choice > 6)
        {
            do
            {
                std::cout << "Invalid entry: please reenter choice" << std::endl;
                std::cin >> choice;
    
    
            } while (choice < 1 || choice > 6);
        }
    
    
        if (choice == 1)
        {
            std::cout << "Please input the first polynomial in the form of: (non-zero coefficient, exponent) pairs" << std::endl;
            do
            {
                std::cin >> x >> y;
                poly1.at(y) = x;
    
                std::cout << "done?" << std::endl;
    
                std::cin >> done;
            } while (done == false);
    
            std::cout << poly1 << std::endl;
        }
        if (choice == 2)
        if (choice == 3)
        if (choice == 4)
        if (choice == 5)
        if (choice == 6)
    
    
        system("pause");
    

    我相信我的问题存在于main或源文件中的某个地方,尽管我已经很长时间没有使用重载的输出操作符了,所以我不确定到底需要修复什么。

    2 回复  |  直到 6 年前
        1
  •  3
  •   PapaDiHatti    6 年前

    您的代码没有问题,除了at is函数,因此您不能对其使用下标运算符,因此上述问题的正确代码是:

    #include <iostream>
    #include <string>
    #include <vector>
    using namespace std;
    ostream & operator << (ostream &os, const vector<int> &c)
    {
        for (int i = 0; i < c.size(); i++)
        {
            os << c.at(i);
            os << "^";
            os << i;
    
        }
        return os;
    }
    int main()
    {
      std::vector<int> v{1,2,3};
      std::cout<<v<<std::endl;
      return 0;
    }
    
        2
  •  2
  •   HMD Purnendu Sarkar    6 年前

    代码的问题在其他地方,实际上很难在第一眼就发现。

    此处:

    os << c.at[i];
    

    std::vector::at 是一个函数,它与 std::vector operator [] ,但它是一个函数,不能这样使用它。将其更改为:

    os << c.at(i); //or os << c[i];
    

    需要注意两件小事:

    1. 最好打印一些分隔符(如 - )当您打印每个 value^index 因为这样读很难。
    2. 在此行中 for(int i = 0; i < c.size(); i++) 为了避免 '<' : signed/unsigned mismatch 警告将其更改为 for(unsigned int i = 0; i < c.size(); i++) std::vector::size 退货 size_type 它是无符号整数类型。