Why can#39;t char** be the return type of the following function in C++?(为什么 char** 不能成为 C++ 中以下函数的返回类型?)
问题描述
我在 C++ 中有以下函数:
I have the following function in C++ :
char** f()
{
char (*v)[10] = new char[5][10];
return v;
}
Visual Studio 2008 说明如下:
Visual studio 2008 says the following:
error C2440: 'return' : cannot convert from 'char (*)[10]' to 'char **'
为了让这个函数工作,返回类型应该是什么?
What exactly should the return type to be, in order for this function to work?
推荐答案
char**
与 char (*)[10]
类型不同.这两种都是不兼容的类型,因此 char (*)[10]
不能隐式转换为 char**
.因此编译错误.
char**
is not the same type as char (*)[10]
. Both of these are incompatible types and so char (*)[10]
cannot be implicitly converted to char**
. Hence the compilation error.
函数的返回类型看起来很丑.你必须把它写成:
The return type of the function looks very ugly. You have to write it as:
char (*f())[10]
{
char (*v)[10] = new char[5][10];
return v;
}
现在它编译.
或者你可以使用 typedef
作为:
Or you can use typedef
as:
typedef char carr[10];
carr* f()
{
char (*v)[10] = new char[5][10];
return v;
}
Ideone.
基本上,char (*v)[10]
定义了一个指向大小为 10 的 char
数组的指针.与以下相同:
Basically, char (*v)[10]
defines a pointer to a char
array of size 10. It's the same as the following:
typedef char carr[10]; //carr is a char array of size 10
carr *v; //v is a pointer to array of size 10
所以你的代码就变成这样了:
So your code becomes equivalent to this:
carr* f()
{
carr *v = new carr[5];
return v;
}
<小时>
cdecl.org
在这里有帮助:
cdecl.org
helps here:
char v[10]
读作declare v as array 10 of char
char (*v)[10]
读作declare v 作为指向 char 数组 10 的指针
char v[10]
reads asdeclare v as array 10 of char
char (*v)[10]
reads asdeclare v as pointer to array 10 of char
这篇关于为什么 char** 不能成为 C++ 中以下函数的返回类型?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么 char** 不能成为 C++ 中以下函数的返回类型?
基础教程推荐
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- Windows Media Foundation 录制音频 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01