new2.c

来自「this is a gcc file, you can download it 」· C语言 代码 · 共 47 行

C
47
字号
// Test that a throw in B's constructor destroys the A and frees the memory.#include <cstddef>#include <cstdlib>#include <new>struct A {  A();  ~A();};struct B {  B (A);};void foo (B*);int newed, created;int main (){  newed = 0; // The libraries might call new before main starts.  try {    foo (new B (A ()));  } catch (...) { }  return !(!newed && !created);}A::A() { created = 1; }A::~A() { created = 0; }B::B(A) { throw 1; }void foo (B*) { }void* operator new (size_t size) throw (std::bad_alloc){  ++newed;  return (void *) std::malloc (size);}void operator delete (void *p) throw (){  --newed;  free (p);}

⌨️ 快捷键说明

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