标签:
array(C++11)
– 使用栈内存
– 长度固定
– 头文件 array
– array
– n_elem必须是常量
list
– 动态数组
– 链表实现
– 头文件list
– 命名空间std
– 构造函数
list<int> c0; //空链表
list<int> c1(3); //建一个含三个默认值是0的元素的链表
list<int> c2(5,2); //建一个含五个元素的链表,值都是2
list<int> c4(c2); //建一个c2的copy链表
list<int> c5(c1.begin(),c1.end()); //c5含c1一个区域的元素[_First, _Last)
– 成员函数
//1、声明ifstream对象,将它与文件关联起来
ifstream fin;
fin.open("points.txt");
//1、或者
ifstream fin("points.txt");
//2、以使用cin的方式使用该对象
////
char ch;
fin >> ch;//read a character from points.txt file
////
char buf[80];
fin >> buf;//read a word from points.txt file
////
fin.getline(buf,80);//read a line from points.txt file
////
string line
getline(fin,line);//read a line from points.txt file
ifstream fin;//create stream using default construct
fin.open("P1.txt"); //associate stream with P1.txt file
........//do stuff
fin.close();//terminate associate with P1.txt file
fin.clear();//reset fin
fin.open("P2.txt");
........
fin.close();
fin.clear();
fin.open("P3.txt");
........
fin.close();
fin.clear();
标签:
原文地址:http://www.cnblogs.com/LingjieLi-vera/p/5911503.html