init5.c

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

C
30
字号
// Objects must be destructed in decreasing cnt order// Original test attributed to James Kanze <jkanze@otelo.ibmmail.com>// execution test - XFAIL *-*-*extern "C" void abort ();static int cnt;class A {  int myCnt;public:  A() : myCnt(cnt++) {}  ~A() { if (--cnt != myCnt) abort(); }};void f() { static A a; /* a.myCnt == 1 */ }class B {  int myCnt;public:  B() : myCnt(cnt+1) { f(); ++cnt; }  ~B() { if (--cnt != myCnt) abort(); }};static A a1; // a1.myCnt == 0static B b1; // b1.myCnt == 2static A a2; // a2.myCnt == 3int main() {}

⌨️ 快捷键说明

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