make2db.cpp

来自「数据结构源码dfssfde」· C++ 代码 · 共 28 行

CPP
28
字号
// test 2D array creation with exception throwing

#include <iostream.h>
#include "make2db.h"
#include <stdlib.h> // has exit()
#include <new.h>
#include <eh.h>


// in Visual new returns 0 on failure.
// The following line should cause new to throw an xalloc
// exception on failure.  Couldn't get it to compile though.
//_PNH old_handler =_set_new_handler(_standard_new_handler);


void main(void)
{
   int **a;
   try {Make2DArray(a,2,2);}
   // does not recognize xalloc, changed to ...
   catch (...) {
       cerr << "Could not create the array" << endl;
       exit(1);}
   a[0][0] = 1; a[0][1] = 2; a[1][0] = 3; a[1][1] = 4;
   cout << a[0][0] << ' ' << a[0][1] << endl;
   cout << a[0][0] << ' ' << a[1][1] << endl;
}

⌨️ 快捷键说明

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