📜  C++数组

📅  最后修改于: 2020-10-16 06:34:34             🧑  作者: Mango

C++数组

与其他编程语言一样,C++中的数组是一组具有连续内存位置的相似类型的元素。

在C++中,std :: array是一个封装固定大小数组的容器。在C++中,数组索引从0开始。我们只能在C++数组中存储固定的元素集。

C++数组的优点

  • 代码优化(更少的代码)
  • 随机访问
  • 轻松遍历数据
  • 易于操作的数据
  • 易于排序数据等

C++数组的缺点

  • 固定尺寸

C++数组类型

C++编程中有两种类型的数组:

  • 一维数组
  • 多维数组

C++一维数组

让我们看一个简单的C++数组示例,在这里我们将创建,初始化和遍历数组。

#include 
using namespace std;
int main()
{
 int arr[5]={10, 0, 20, 0, 30};  //creating and initializing array  
        //traversing array  
        for (int i = 0; i < 5; i++)  
        {  
            cout<

输出:/ p>

10
0
20
0
30

C++数组示例:使用foreach循环遍历

我们还可以使用foreach循环遍历数组元素。它一一返回数组元素。

#include 
using namespace std;
int main()
{
 int arr[5]={10, 0, 20, 0, 30}; //creating and initializing array  
        //traversing array  
       for (int i: arr)   
        {  
            cout<

输出:

10
20
30
40
50