ctor2.c
来自「this is a gcc file, you can download it 」· C语言 代码 · 共 43 行
C
43 行
// PR c++/4460// Test that the cleanup for fully-constructed subobjects when a// constructor throws gets the right address for a virtual base.// { dg-do run }int r;void *p;struct VBase{ virtual void f () {} VBase() { p = this; } ~VBase() { if (p != this) r = 1; }};struct StreamBase { virtual ~StreamBase() {}};struct Stream : public virtual VBase, public StreamBase{ Stream() {} virtual ~Stream() {} };struct DerivedStream : public Stream{ DerivedStream() { throw 1; }};int main() { try { DerivedStream str; } catch (...) { } return r;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?