我一直在研究 NRVO,它对不同编译器的支持,遇到了奇怪的行为,这很令人困惑。
示例代码:
#include <iostream>
using namespace std;
class X {
public:
X() {
cout << "Constructor 1" << endl;
}
};
X test() {
X a;
cout << &a << endl;
return a;
}
int main() {
X b = test();
cout << &b << endl;
return 0;
}
使用优化级别 2(或 3)编译后,输出是 2 个不同的内存地址。虽然,据我了解,功能代码对 NRVO 有效。
PS 使用 VS2010 和优化级别 2 编译的相同代码使用 NRVO。
如果我添加额外的构造函数:
X(const X& h) {
cout << "Contsructor 2" << endl;
}
编译地址相同后,我假设应用了 NRVO,但它与优化级别无关。
“ X(const X& h) ”是否以某种方式暗示 g++ 使用 NRVO?或者根本没有应用 NRVO,它有什么不同?
提前致谢。
添加。海合会版本:
$ g++ -v
Configured with: [....] -enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared --enable-multiarch --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.4 --program-suffix=-4.4 --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i486 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
gcc version 4.4.3
附加测试:使用X(const X& h)
构造和-fno-elide-constructors
g++ 标志编译它调用“复制”构造函数,预期行为。没有它,NRVO 就会失败。在不同的机器上测试:gcc 4.4.3 和 gcc 4.3.* -> 相同的结果。
到目前为止,我不确定 __cxa_atexit (存在于 @yves 的 g++ 版本中)是否会以某种方式影响不同的行为。(据我了解,这与它无关,但我不完全理解它给调用顺序带来的变化)