📄 tstktst.cpp
字号:
//: C16:Tstktst.cpp
// From Thinking in C++, 2nd Edition
// at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Use template list & iterator
#include <iostream>
#include <fstream>
#include <string>
#include "../require.h"
#include "TStack.h"
using namespace std;
int main() {
ifstream file("tstktst.cpp");
assure(file, "tstktst.cpp");
TStack<string> textlines;
// Read file and store lines in the list:
string line;
while(getline(file, line))
textlines.push(new string(line));
int i = 0;
// Use iterator to print lines from the list:
TStackIterator<string> it(textlines);
TStackIterator<string>* it2 = 0;
while(it) {
cout << *it.current() << endl;
it++;
if(++i == 10) // Remember 10th line
it2 = new TStackIterator<string>(it);
}
cout << *(it2->current()) << endl;
delete it2;
} ///:~
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -