stash2test.cpp

来自「Think in C++ 2nd」· C++ 代码 · 共 36 行

CPP
36
字号
//: C06:Stash2Test.cpp

// From Thinking in C++, 2nd Edition

// Available at http://www.BruceEckel.com

// (c) Bruce Eckel 1999

// Copyright notice in Copyright.txt

//{L} Stash2

// Constructors & destructors

#include "Stash2.h"

#include "../require.h"

#include <fstream>

#include <iostream>

#include <string>

using namespace std;



int main() {

  Stash intStash(sizeof(int));

  for(int i = 0; i < 100; i++)

    intStash.add(&i);

  for(int j = 0; j < intStash.count(); j++)

    cout << "intStash.fetch(" << j << ") = "

         << *(int*)intStash.fetch(j)

         << endl;

  const int bufsize = 80;

  Stash stringStash(sizeof(char) * bufsize);

  ifstream in("Stash2Test.cpp");

  assure(in, " Stash2Test.cpp");

  string line;

  while(getline(in, line))

    stringStash.add((char*)line.c_str());

  int k = 0;

  char* cp;

  while((cp = (char*)stringStash.fetch(k++))!=0)

    cout << "stringStash.fetch(" << k << ") = "

         << cp << endl;

} ///:~

⌨️ 快捷键说明

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