gpt4 book ai didi

c++ - std::ostream {aka std::basic_ostream} Ivalue to 'std::basic_ostream&&

转载 作者:搜寻专家 更新时间:2023-10-31 01:48:43 25 4
gpt4 key购买 nike

在这段代码中,我尝试将迭代器移动 10 个元素。

   #include <iostream>
#include <string>
#include <vector>
int main()
{
using namespace std;
vector<int> v(20);
auto mid = v.begin() + 10;
cout<<mid;


}

运行此代码时,出现标题中提到的错误。我是初学者。我几乎在我编写的每个程序中都遇到过这个错误。我哪里错了?

最佳答案

一个迭代器“指向”一个元素,你想要做的是:

cout << *mid;

您必须“取消引用”迭代器才能打印它指向的内容。尝试直接打印它会给你你提到的错误。

编辑:这是一个小演示:

#include <iostream>
#include <vector>

int main(int argc, char* argv[])
{
std::vector<int> numbers;
numbers.push_back(4);
numbers.push_back(3);
numbers.push_back(2);

auto beg = numbers.begin();
auto mid = numbers.begin() + 1;
std::cout << *beg << std::endl;
std::cout << (beg < mid) << std::endl; // True because beg (index 0) points to an element earlier than mid (index 1)
std::cout << (*beg < *mid) << std::endl; // False because the element pointed-to by beg (4) is bigger than the one pointed-to by mid (3)

return 0;
}

Output第一行显示 4 这是第一个元素的值!第二行显示 1(所有非零值均表示真),最后一行显示 0(零是唯一表示假的值)。

关于c++ - std::ostream {aka std::basic_ostream<char>} Ivalue to 'std::basic_ostream<char>&&,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17399024/

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