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

📄 pstash.cpp

📁 Think in C++ 2nd
💻 CPP
字号:
//: C13:PStash.cpp {O}

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

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

// (c) Bruce Eckel 1999

// Copyright notice in Copyright.txt

// Pointer Stash definitions

#include "PStash.h"

#include <iostream>

#include <cstring> // 'mem' functions

using namespace std;



int PStash::add(void* element) {

  const int inflateSize = 10;

  if(next >= quantity)

    inflate(inflateSize);

  storage[next++] = element;

  return(next - 1); // Index number

}



// Operator overloading replacement for fetch

void* PStash::operator[](int index) const {

  if(index >= next || index < 0)

    return 0;  // Out of bounds

  // Produce pointer to desired element:

  return storage[index];

}



void PStash::inflate(int increase) {

  const int psz = sizeof(void*);

  void** st = new void*[quantity + increase];

  memset(st, 0, (quantity + increase) * psz);

  memcpy(st, storage, quantity * psz);

  quantity += increase;

  delete []storage; // Old storage

  storage = st; // Point to new memory

} ///:~

⌨️ 快捷键说明

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