How to access variables defined and declared in one function in another function?(如何访问在另一个函数中的一个函数中定义和声明的变量?)
问题描述
谁能告诉我如何访问在另一个函数中的函数中声明和定义的变量.例如
Can anyone tell me how to access variables declared and defined in a function in another function. E.g
void function1()
{
string abc;
}
void function2()
{
I want to access abc here.
}
怎么做?我知道使用参数我们可以做到这一点,但还有其他方法吗?
How to do that? I know using parameters we can do that but is there any other way ?
推荐答案
C++的方式是通过引用你的函数来传递abc
:
The C++ way is to pass abc
by reference to your function:
void function1()
{
std::string abc;
function2(abc);
}
void function2(std::string &passed)
{
passed = "new string";
}
您也可以将字符串作为指针传递并在函数 2 中取消引用它.这更像是 C 风格的做事方式,并不安全(例如,可以传入 NULL 指针,如果没有良好的错误检查,它将导致未定义的行为或崩溃.
You may also pass your string as a pointer and dereference it in function2. This is more the C-style way of doing things and is not as safe (e.g. a NULL pointer could be passed in, and without good error checking it will cause undefined behavior or crashes.
void function1()
{
std::string abc;
function2(&abc);
}
void function2(std::string *passed)
{
*passed = "new string";
}
这篇关于如何访问在另一个函数中的一个函数中定义和声明的变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何访问在另一个函数中的一个函数中定义和声明的变量?
基础教程推荐
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 从 std::cin 读取密码 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01