temporary3.c

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

C
27
字号
// Bug: the temporary returned from f is elided, causing a to be constructed// twice but only destroyed once.extern "C" int printf (const char *, ...);int c,d;struct A {  A (int) { c++; }  ~A () { d++; }  A (const A&) { c++; }  int i;};A f (){ return 1; }int main (){  {    A a (1);    a = f ();  }  printf ("%d %d\n", c, d);  return c != d;}

⌨️ 快捷键说明

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