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

📄 stash3test.cpp

📁 Think in C++ 第二版源码
💻 CPP
字号:
//: C07:Stash3Test.cpp

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

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

// (c) Bruce Eckel 1999

// Copyright notice in Copyright.txt

//{L} Stash3

// Function overloading

#include "Stash3.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, 100);

  ifstream in("Stash3Test.cpp");

  assure(in, "Stash3Test.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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -