Passing pointer argument by reference under C?(在C下通过引用传递指针参数?)
问题描述
#include <stdio.h>
#include <stdlib.h>
void
getstr(char *&retstr)
{
char *tmp = (char *)malloc(25);
strcpy(tmp, "hello,world");
retstr = tmp;
}
int
main(void)
{
char *retstr;
getstr(retstr);
printf("%s
", retstr);
return 0;
}
gcc
不会编译这个文件,但是在添加 #include <cstring>
之后我可以使用 g++ 来编译这个源文件.
gcc
would not compile this file, but after adding #include <cstring>
I could use g++ to compile this source file.
问题是:C语言是否支持通过引用传递指针参数?如果没有,为什么?
The problem is: does the C programming language support passing pointer argument by reference? If not, why?
谢谢.
推荐答案
不,C 不支持引用.这是设计使然.您可以在 C 中使用指向指针的指针代替引用.引用仅在 C++ 语言中可用.
No, C doesn't support references. It is by design. Instead of references you could use pointer to pointer in C. References are available only in C++ language.
这篇关于在C下通过引用传递指针参数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在C下通过引用传递指针参数?
基础教程推荐
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01