⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 list1.cpp

📁 本代码是《C/C++程序员实用大全》的配套代码。网络转载
💻 CPP
字号:
#ifdef __BCPLUSPLUS__
#include <list.h>
#else
#include <list>
#endif
#include <iostream.h>
#include <string.h>

using namespace std;
typedef list<string> LISTSTR;

// Try each of the four constructors
void main(void)
 {
   LISTSTR::iterator i;
   LISTSTR test; 					// default constructor

   test.insert(test.end(), "one");
   test.insert(test.end(), "two");

   LISTSTR test2(test);            			// construct from another list
   LISTSTR test3(3, "three");      			// construct with three elements
    							// containing the value "three" 
   LISTSTR test4(++test3.begin(),test3.end());	// create from part of test3

   // Print them all out
   for (i =  test.begin(); i != test.end(); ++i)
     cout << *i << " ";
   cout << endl;

   for (i =  test2.begin(); i != test2.end(); ++i)
     cout << *i << " ";
   cout << endl;

   for (i =  test3.begin(); i != test3.end(); ++i)
     cout << *i << " ";
   cout << endl;

   for (i =  test4.begin(); i != test4.end(); ++i)
     cout << *i << " ";
   cout << endl;
 }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -