C++ c2664 错误 "cannot convert argument 1 from std::string to _Elem *"

C++ c2664 error "cannot convert argument 1 from std::string to _Elem *"

我整个星期都在做这个家庭作业。就在我最终将程序设置为 运行 时,我意识到仅使用 cin >> breed,如果我的输入有一个 space,它会破坏代码(因为我的程序需要收集 3 个单独的变量,首先是一个 int,然后是一个字符串,最后一个 bool)。因为这是第二个变量,所以它使用带有白色字符的短语弄乱了我的代码。当我尝试将其更改为 cin.getcin.getline 时,这是我收到的错误消息:

c2664 error "cannot convert argument 1 from std::string to _Elem *"

下面是有问题的代码(中间一行给出了错误)。任何帮助将不胜感激!

#include <iostream>
#include <string>
using namespace std;

int main()
{
    int birthyear;  
    string breed;    
    bool vaccines;  

    cout << "Please enter value for dog's birth year: ";
    cin >> birthyear;
    cout << "What is the breed of the dog: ";
    cin.getline(breed, 100);
    cin.ignore();
    cout << "Has the dog been vaccinated (1 = Yes/ 0 = No): ";
    cin >> vaccines;
}

首先,你需要知道在 C++ 中有 两个 getline 东西,一个在 I/O 区域,一个在 top-level 标准命名空间。

cin.getline(breed, 100) 是 I/O 区域中的那个(特别是 istream::getline(),它对字符串 一无所知,更喜欢处理字符数组。你应该避免那个。

了解字符串的是 std::getline(),如果您不想回到 [= =53=] "strings".

此外,在 C++ 中混合使用 type-specific 输入(如 <<)和 line-specific 输入(如 getline)操作时需要小心。了解每次操作前后文件指针的位置很重要。

例如,cin << someInt会在它读入的整数之后立即留下文件指针。这意味着,如果你的下一个操作是getline(),它很可能会找到在那之后的行上的所有内容整数(至少,这将是您输入的用于处理整数的换行符),而不是您要输入字符串的下一行。

针对您的情况的一个简单解决方法是在尝试获取下一行之前忽略包括换行符在内的所有内容。这可以用 ignore():

来完成
#include <iostream>
#include <string>
#include <limits>
using namespace std;

int main() {
    int birthyear; string breed; bool vaccines;

    cout << "Please enter value for dog's birth year: ";
    cin >> birthyear;

    cout << "What is the breed of the dog: ";
    cin.ignore(numeric_limits<std::streamsize>::max(), '\n');
    getline(cin, breed);

    cout << "Has the dog been vaccinated (1 = Yes/ 0 = No): ";
    cin >> vaccines;

    // Output what you got.

    cout << birthyear << " '" << breed << "' " << vaccines << '\n';
}

您还可以选择确保 all 输入是 line-based(输入这些行后将其转换为正确的类型),因为这可能会简化您的任务确保指针位于正确的位置,并且可以更好地处理输入错误(例如输入 xyzzy 整数)。

这样的事情应该是一个好的开始:

#include <iostream>
#include <string>
#include <limits>
#include <set>
#include <cstdlib>
using namespace std;

// Get string, always valid. Optionally strip leading and
// trailing white-space.

bool getResp(const string &prompt, string &val, bool strip = false) {
    cout << prompt;
    getline(cin, val);
    if (strip) {
        val.erase(0, val.find_first_not_of(" \t"));
        val.erase(val.find_last_not_of(" \t") + 1);
    }
    return true;
}

// Get unsigned, must ONLY have digits (other than
// leading or trailing space).

bool getResp(const string &prompt, unsigned long &val) {
    string str;
    if (! getResp(prompt, str, true)) return false;

    for (const char &ch: str)
        if (! isdigit(ch)) return false;

    val = strtoul(str.c_str(), nullptr, 10);
    return true;
}

// Get truth value (ignoring leading/trailing space),
// and allow multiple languages.

bool getResp(const string &prompt, bool &val) {
    string str;
    if (! getResp(prompt, str, true)) return false;

    const set<string> yes = {"yes", "y", "1", "si"};
    const set<string> no = {"no", "n", "0", "nyet"};

    if (yes.find(str) != yes.end()) {
        val = true;
        return true;
    }

    if (no.find(str) != no.end()) {
        val = false;
        return true;
    }

    return false;
}

// Test driver for your situation.

int main() {
    unsigned long birthYear;
    std::string dogBreed;
    bool isVaccinated;

    if (! getResp("What year was the dog born? ", birthYear)) {
        std::cout << "** ERROR, invalid value\n";
        return 1;
    }

    if (! getResp("What is the breed of the dog? ", dogBreed, true)) {
        std::cout << "** ERROR, invalid value\n";
        return 1;
    }

    if (! getResp("Has the dog been vaccinated? ", isVaccinated)) {
        std::cout << "** ERROR, invalid value\n";
        return 1;
    }

    std::cout
        << birthYear
        << " '" << dogBreed << "' "
        << (isVaccinated ? "yes" : "no") << '\n';
}