在 C++ 编程中将数组传递给函数
在 C++ 编程中将数组传递给函数
在本教程中,我们将通过示例学习如何在 C++ 中将一维和多维数组作为函数参数传递。
在 C++ 中,我们可以将数组作为参数传递给函数。而且,我们还可以从函数中返回数组。
在了解将数组作为函数参数传递之前,请确保您了解 C++ 数组和 C++ 函数。
将数组作为函数参数传递的语法
将数组传递给函数的语法是:
returnType functionName(dataType arrayName[arraySize]) {
// code
}
我们来看一个例子,
int total(int marks[5]) {
// code
}
在这里,我们传递了一个 int
类型数组名为 marks 到函数 total()
.数组的大小为 5 .
示例1:将一维数组传递给函数
// C++ Program to display marks of 5 students
#include <iostream>
using namespace std;
// declare function to display marks
// take a 1d array as parameter
void display(int m[5]) {
cout << "Displaying marks: " << endl;
// display array elements
for (int i = 0; i < 5; ++i) {
cout << "Student " << i + 1 << ": " << m[i] << endl;
}
}
int main() {
// declare and initialize an array
int marks[5] = {88, 76, 90, 61, 69};
// call display function
// pass array as argument
display(marks);
return 0;
}
输出
Displaying marks: Student 1: 88 Student 2: 76 Student 3: 90 Student 4: 61 Student 5: 69
在这里,
- 当我们通过传递一个数组作为参数调用函数时,只使用数组的名称。
display(marks);
- 但是,请注意
display()
的参数 功能。void display(int m[5])
[]
. - 函数参数
int m[5]
转换为int* m;
.这指向数组 marks 指向的相同地址 .这意味着当我们操作 m[5] 在函数体中,我们实际上是在操作原始数组 marks .
C++ 以这种方式处理将数组传递给函数以节省内存和时间。
将多维数组传递给函数
我们还可以将多维数组作为参数传递给函数。例如,
示例 2:将多维数组传递给函数
// C++ Program to display the elements of two
// dimensional array by passing it to a function
#include <iostream>
using namespace std;
// define a function
// pass a 2d array as a parameter
void display(int n[][2]) {
cout << "Displaying Values: " << endl;
for (int i = 0; i < 3; ++i) {
for (int j = 0; j < 2; ++j) {
cout << "num[" << i << "][" << j << "]: " << n[i][j] << endl;
}
}
}
int main() {
// initialize 2d array
int num[3][2] = {
{3, 4},
{9, 5},
{7, 1}
};
// call the function
// pass a 2d array as an argument
display(num);
return 0;
}
输出
Displaying Values: num[0][0]: 3 num[0][1]: 4 num[1][0]: 9 num[1][1]: 5 num[2][0]: 7 num[2][1]: 1
在上面的程序中,我们定义了一个名为display()
的函数 .该函数采用二维数组,int n[][2]
作为它的参数并打印数组的元素。
在调用函数时,我们只传递二维数组的名称作为函数参数display(num)
.
注意 :不一定要指定数组的行数。但是,应始终指定列数。这就是我们使用 int n[][2]
的原因 .
我们还可以将超过 2 维的数组作为函数参数传递。
C++ 从函数返回数组
我们也可以从函数返回一个数组。但是,不会返回实际数组。而是通过指针返回数组第一个元素的地址。
我们将在接下来的教程中学习如何从函数中返回数组。
C语言