gpt4 book ai didi

c++ - VS2015编译报错C2679 :

转载 作者:行者123 更新时间:2023-11-28 06:00:45 25 4
gpt4 key购买 nike

我在尝试使用 std::ostream 打印时遇到问题我已经检查了两次和三次代码。但无济于事。 VC14 总是像下面这样返回错误:

error C2679: binary '<<': no operator found which takes a right-hand operand of type 'const std::string' (or there is no acceptable conversion)

我希望有人能帮我弄清楚这段代码有什么问题

代码:

#include <iostream>
#include <iomanip>
#include <array>
#include <cstring>

struct Student
{
std::string name;
int midTerm;
char grade;

static void displayHeader(std::ostream& str)
{
str << std::left
<< std::setw(10) << " Names"
<< std::setw(10) << "Exam"
<< std::setw(10) << "Grade";
str << std::setfill('-') << std::setw(28) << '\n';
}

friend std::ostream& operator<<(std::ostream& str, const Student& data)
{
str << std::setfill(' ') << std::left
<< std::setw(10) << data.name
<< std::setw(11) << data.midTerm
<< std::setw(2) << data.grade;

return str;
}
};

template<typename C>
void display(const C& c)
{
using ValueType = typename C::value_type;

ValueType::displayHeader(std::cout);

for (const auto& i : c)
{
std::cout << '\n' << i;
}
}

int main()
{
std::array<Student, 5> a
{
{
{ "me", 60, 'D' },
{ "matt", 88, 'B' },
{ "pop", 88, 'B' },
{ "john", 93, 'A' },
{ "jesseca", 82, 'B' }

}
};

display(a);

std::sort(a.begin(), a.end(),
[](const auto& a, const auto& b)
{
return std::tie(a.midTerm, a.grade, a.name) > std::tie(b.midTerm, b.grade, b.name);
});

std::cout << "\n\nafter sorting\n\n";

display(a);
}

最佳答案

正如 Piotr 指出的那样,问题在于您忘记包含 <string> .

您没有收到关于未知类型的明确警告的原因 std::string就是 Visual Studio vector包括 stdexcept其中包括xstring其中包含 std::string 的前向声明.

关于c++ - VS2015编译报错C2679 :,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33327251/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com