list数据存取
Posted iamcookieandyou
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了list数据存取相关的知识,希望对你有一定的参考价值。
#include <list> #include <iostream> using namespace std; //list数据存取 void printList(const list<int>&L){ for (list<int>::const_iterator it = L.begin(); it != L.end(); it ++){ cout << *it << ‘ ‘; } cout << endl; } void test01(){ list<int>L1; L1.push_back(10); L1.push_back(20); L1.push_back(30); L1.push_back(40); //l1[0]不可以用[]方式访问list容器中的元素 //l1.at(0) 不可以用at方式访问list容器的元素 cout << "第一个元素为:" << L1.front() << endl; cout << "最后一个元素:" << L1.back() << endl; //迭代器不支持随机访问的。 list<int>::iterator it = L1.begin(); it ++; it --; //it = it + 1 //错误,不支持随机访问 } int main(){ test01(); return 0; }
以上是关于list数据存取的主要内容,如果未能解决你的问题,请参考以下文章
使用Redis存取数据+数据库存取(spring+java)
TP5报如下的错误 Indirect modification of overloaded element of thinkpaginatorCollection has no effect(代码片段