Return array in C++(在 C++ 中返回数组)
问题描述
我是一个完全的 C++ 菜鸟,我在从我的方法返回一个数组时遇到了一些麻烦.我有一个带有以下方法声明的头文件:
I am a total C++ noob, and I am having some trouble returning an array from my methods. I have a header file with the following method declaration:
virtual double[]
echoDoubleArray(double[] doubleArray, int arraySize) throw (RemoteException);
这给了我以下错误:
../common/EchoService.h: At global scope:
../common/EchoService.h:25: error: expected unqualified-id before ‘[’ token
返回数组的正确方法是什么?
What is the correct way to return an array?
推荐答案
C++ 不能很好地处理非本地数组,你更可能应该使用像 std::array<double,10> 这样的实际容器;
或 std::vector
.我认为不可能从函数返回数组.
C++ doesn't play nice with non-local arrays, more likely you should be using an actual container like std::array<double,10>
or std::vector<double>
. I don't think it's possible to return an array from a function.
这篇关于在 C++ 中返回数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 C++ 中返回数组
基础教程推荐
- 从 std::cin 读取密码 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01