本文介绍了从函数返回值如何工作?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我最近有一个严重的错误,我忘了在函数中返回一个值。问题是,即使没有什么返回它在Linux / Windows下工作正常,只有在Mac下崩溃。I recently had a serious bug, where I forgot to return a value in a function. The problem was that even though nothing was returned it worked fine under Linux/Windows and only crashed under Mac. I discovered the bug when I turned on all compiler warnings.这里是一个简单的例子:So here is a simple example:#include <iostream>class A{public: A(int p1, int p2, int p3): v1(p1), v2(p2), v3(p3) { } int v1; int v2; int v3;};A* getA(){ A* p = new A(1,2,3);// return p;}int main(){ A* a = getA(); std::cerr << "A: v1=" << a->v1 << " v2=" << a->v2 << " v3=" << a->v3 << std::endl; return 0;} $ bMy question is how can this work under Linux/Windows without crashing? How is the returning of values done on lower level?推荐答案在英特尔架构上,通常会返回简单的值(整数和指针)在 eax 寄存器中。该寄存器(除其他外)还用作在存储器中移动值时的临时存储器和在计算期间作为操作数。因此,该寄存器中的任何值都被视为返回值,在您的情况下,它确实是您想要返回的值。On Intel architecture, simple values (integers and pointers) are usually returned in eax register. This register (among others) is also used as temporary storage when moving values in memory and as operand during calculations. So whatever value left in that register is treated as the return value, and in your case it turned out to be exactly what you wanted to be returned. 这篇关于从函数返回值如何工作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!