How does returning values from a function work?(从函数返回值是如何工作的?)
问题描述
我最近遇到了一个严重的错误,我忘记在函数中返回一个值.问题是,即使没有返回任何内容,它在 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;
}
我的问题是如何在 Linux/Windows 下运行而不会崩溃?底层的值返回是怎么做的?
My question is how can this work under Linux/Windows without crashing? How is the returning of values done on lower level?
推荐答案
在 Intel 架构上,简单的值(整数和指针)通常在 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.
这篇关于从函数返回值是如何工作的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从函数返回值是如何工作的?
基础教程推荐
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- C++,'if' 表达式中的变量声明 2021-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 运算符重载的基本规则和习语是什么? 2022-10-31
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- 设计字符串本地化的最佳方法 2022-01-01
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01