1

我正在编写一个供我个人使用的小程序来练习学习 C++ 及其功能,它是一个 MLA 引文生成器(我正在写一篇有数十次引文的大型论文)。

由于缺乏更好的方法(我不了解类或在您的 main 中使用其他 .cpp 文件,所以不要费心告诉我,当我有更多时间时,我会继续努力),我正在写每种引用类型的函数。如果我有更多时间,我可能会将其分解为每个重用代码的函数。

我的问题是:std::cin 对象是如何工作的?我目前正在使用 std::cin >> 读取我希望是单个单词的字符串,并使用 getline(std::cin, string) 读取带有空格的字符串。不过,我没有得到正确的输出。我只想知道 std::cin 是如何工作的,以及为什么我总是意外地跳过一些输入(例如,它跳过了 webPage 而不是让我有机会输入它)。

void webCit() {
    std::cout << "Leave any unknowns blank.\n";

    std::cout << "Author last name: ";
    std::string lastName;
    std::cin >> lastName;

    if (lastName.size() != 0) {
        lastName = lastName + ", ";
    }


    std::cout << "Author first name: ";
    std::string firstName;
    std::cin >> firstName;

    if (firstName.size() != 0) {
        firstName = firstName + ". ";
    }


    std::cout << "Article title: ";
    std::string articleTitle;
    getline(std::cin, articleTitle);

    if (articleTitle.size() != 0) {
        articleTitle = "\"" + articleTitle + ".\" ";
    }

    std::cout << "Title of web page: ";
    std::string pageTitle;
    std::cin >> pageTitle;

    if (pageTitle.size() != 0) {
        pageTitle = pageTitle + ". ";
    }

    std::cout << "Publication date: ";
    std::string publicationDate;
    getline(std::cin, publicationDate);

    if (publicationDate.size() != 0) {
        publicationDate = publicationDate + ". ";

    }

    std::cout << "Web address: ";
    std::string webAddress;
    getline(std::cin, webAddress);

    webAddress = "<" + webAddress + ">. ";

    std::cout << "Date accessed: ";
    std::string dateAccessed;
    getline(std::cin, dateAccessed);

    if (dateAccessed.size() != 0) {
        dateAccessed = dateAccessed + ". ";
    }

    std::string citation =
        lastName + firstName + articleTitle + pageTitle + publicationDate + webAddress + dateAccessed;

    std::cout << citation; //TEST; remove after
}

编辑:I/O

Leave any unknowns blank.
Author last name: Hooked
Author first name: Jerbear
Article title: Title of web page: title
Publication date: Web address: www.win.com
Date accessed: 4/29/09
Hooked, Jerbear. Title. <www.win.com>. 4/29/09. 

如您所见,出了点问题,因为我的输入被跳过了。

4

2 回答 2

7

这里发生的是std::cin >> firstName;只读取但不包括第一个空格字符,'\n'当你按下回车时,它包括换行符(或),所以当它到达时getline(std::cin, articleTitle);'\n'仍然是 中的下一个字符std::cin,并getline()立即返回。

// cin = "Bloggs\nJoe\nMan of Steel, Woman of Kleenex\n"
std::cin >> lastName;
std::cin >> firstName;
// firstName = "Joe", lastName = "Bloggs", cin = "\nMan of Steel, Woman of Kleenex\n"
getline(std::cin, articleTitle);
// articleTitle = "", cin = "Man of Steel, Woman of Kleenex\n"

在调用 getline() 之前添加 ' std::cin >> std::ws' (ws意味着w速度快)可以解决问题:s

std::cin >> firstName >> std::ws;
getline(std::cin, articleTitle);

但是如果你在论证中这样做,更容易看出你错过了哪里:

std::cin >> firstName;
getline(std::cin >> std::ws, articleTitle);
于 2009-04-30T05:48:27.303 回答
4

当您使用>>运算符时,cin会向上读取直到下一个空格字符,但它不会处理空格。所以当你有

std::cin >> str1;
std::getline(std::cin, str2);

第二个调用将只处理换行符,您将没有机会输入任何输入。

相反,如果您打算在getline之后使用operator >>,您可以在调用std::cin.ignore()之前调用吃换行符getline

编辑:当你这样做时,它会像你预期的那样工作

std::cin >> str1;
std::cin >> str2;

因为第二次调用将忽略所有前导空格。

于 2009-04-30T05:41:23.390 回答