String Vector程序在输入之前退出

时间:2010-05-11 02:46:13

标签: c++ function getline

所以,我有一个必须添加,删除和打印向量内容的项目...问题是,在运行程序之前退出我可以输入要添加到向量的字符串。我评论了该部分的功能。

谢谢!

#include <iostream>
#include <cstdlib>
#include <vector>
#include <string>

using namespace std;

void menu();
void addvector(vector<string>& vec);
void subvector(vector<string>& vec);
void vectorsize(const vector<string>& vec);
void printvec(const vector<string>& vec);
void printvec_bw(const vector<string>& vec);

int main()
{
    vector<string> svector;

    menu();

    return 0;
}
//functions definitions

void menu()
{
    vector<string> svector;
    int choice = 0;

        cout << "Thanks for using this program! \n"
             << "Enter 1 to add a string to the vector \n"
             << "Enter 2 to remove the last string from the vector \n"
             << "Enter 3 to print the vector size \n"
             << "Enter 4 to print the contents of the vector \n"
             << "Enter 5 ----------------------------------- backwards \n"
             << "Enter 6 to end the program \n";
        cin >> choice;

        switch(choice)
        {

                case 1:
                    addvector(svector);
                    break;
                case 2:
                    subvector(svector);
                    break;
                case 3:
                    vectorsize(svector);
                    break;
                case 4:
                    printvec(svector);
                    break;
                case 5:
                    printvec_bw(svector);
                    break;
                case 6:
                    exit(1);
                default:
                    cout << "not a valid choice \n";

            // menu is structured so that all other functions are called from it.
        }

}

void addvector(vector<string>& vec)
{
    string line;

     int i = 0;

        cout << "Enter the string please \n";
        getline(cin, line); // doesn't prompt for input!
        vec.push_back(line);    

}

void subvector(vector<string>& vec)
{
    vec.pop_back();
    return;
}

void vectorsize(const vector<string>& vec)
{
    if (vec.empty())
    {
        cout << "vector is empty";
    }
    else
    {
        cout << vec.size() << endl;
    }
    return;
}

void printvec(const vector<string>& vec)
{
    for(int i = 0; i < vec.size(); i++)
    {
        cout << vec[i] << endl;
    }

    return;
}

void printvec_bw(const vector<string>& vec)
{
    for(int i = vec.size(); i > 0; i--)
    {
        cout << vec[i] << endl;
    }

    return;
}

2 个答案:

答案 0 :(得分:4)

运行程序时,键入数字1以告诉程序要添加的程序。键入1后,按Enter键,在输入中放入换行符等待读取。在addvector函数中,readline读取换行符。

由于这是家庭作业,如果您自己找出解决方案,现在您已了解问题,那就更好了。

答案 1 :(得分:1)

>>getline来电彼此不太好。 '&gt;&gt;'不会吞下\n,最终会在getline中产生一个空字符串。

相关问题