gpt4 book ai didi

c++ - std::stack 损坏返回值

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:08:38 25 4
gpt4 key购买 nike

我已将我的代码缩减为以下内容以说明我的问题:

#include <iostream>
#include <stack>
#include <utility>

std::pair<double,double> test(double a, double b)
{
std::stack<int> my_stack;
return std::make_pair<double,double>(a,b);
}

int main()
{
std::pair<double,double> p = test(1.1,2.2);
std::cout << p.first << " " << p.second << "\n";

return 0;
}

当我使用 gcc -O1 标志时,test() 函数的返回值被破坏。这是一些示例输出:

$ gcc -O2 a.cxx  -lstdc++
$ ./a.out
1.1 2.2
$ gcc -O1 a.cxx -lstdc++
$ ./a.out
2.60831e-317 2.60657e-317
$ gcc -v
Reading specs from /usr/lib64/gcc-lib/x86_64-suse-linux/3.3.3/specs
Configured with: ../configure --enable-threads=posix --prefix=/usr --with-local- prefix=/usr/local --infodir=/usr/share/info --mandir=/usr/share/man --enable-languages=c,c++,f77,objc,java,ada --disable-checking --libdir=/usr/lib64 --enable-libgcj --with-gxx-include-dir=/usr/include/g++ --with-slibdir=/lib64 --with-system-zlib --enable-shared --enable-__cxa_atexit x86_64-suse-linux Thread model: posix
gcc version 3.3.3 (SuSE Linux)

此代码适用于除“-O1”之外的所有 gcc 优化标志。如果我删除 my_stack 的声明,它也会起作用。您会将此归类为编译器错误,还是我遗漏了一些关于 std::stack 和返回 std::pair 值的信息?

最佳答案

绝对是一个编译器错误。顺便说一句,我的 GCC 版本 (4.4.5) 没有复制它。

已知 SuSE 9.1 附带的 GCC 3.3.3 版本已损坏(请参阅 here)。

关于c++ - std::stack 损坏返回值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4071809/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com