return.c
来自「this is a gcc file, you can download it 」· C语言 代码 · 共 22 行
C
22 行
// PRMS Id: 5331// Bug: the return value of foo is constructed in a temporary and then// copied into the return slot. This is not necessary.int c = 0;struct X { X(int i) { } X(X const &XX) { c = 1; } ~X() { }};const X foo() { return X(3); };int main(){ foo(); return c;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?