Arrays
Like a vector, an array is a data structure used in C++ to store a sequential collection of elements. Unlike vectors, its size cannot be changed.
Being able to store multiple pieces of related information in the same structure is very useful when writing C++ programs.
Creating an Array
When creating an array, two pieces of information have to be kept in mind:
- The type of data to be stored inside it.
- How many items it should be able to hold (its size).
An array can be created a lot like how normal variables are created: by specifying the data type, giving it a descriptive name, and also specifying its size:
int favoriteNums[4];
In the above code example, an array is created with a size of 4
, meaning it can hold four integers (all four elements will initially have the default int
value of 0
).
In many cases, what data needs to go in the array will not be known until after it’s created, but if the contents of the array are known ahead of time, it can be initialized with custom values upfront:
int favoriteNums[] = {7, 9, 15, 16};
This array would also have a size of 4
, but it does not need to be explicitly specified when initialized this way.
Note: Even if an array
arr
has a length ofn
, it can be accessed and modified witharr[n+1]
, which can overwrite other variables or cause undefined behaviour.
Array Indices
Like vectors, each element in an array is assigned a specific index starting at zero. To access or modify an element in the array it may be referred to by its index and operated on accordingly:
char vowels[] = {'a', 'e', 'i', 'o', 'u'};// indexes: 0 1 2 3 4std::cout << vowels[0];// Output: avowels[0] = 'r';std::cout << vowels[0];// Output: r
In the case above, an array of chars
was initialized with all the vowels, and then the first element in the array at index 0
was printed out. Then the element at index 0
was modified by being assigned a new value of 'r'
, which was then printed out.
Arrays in C++ have a fixed size, meaning elements cannot be added or removed once the array has been created. Only existing elements may be modified without changing the total size or shape of the structure.
Uninitialized Elements
Array elements that are not assigned a value when the array is created are known as uninitialized elements and should not be accessed during runtime. For example:
int arr[5] = {0, 1, 2};
This code initializes an array of five integers in which index 3
and 4
are empty and should not be accessed during the program’s runtime.
All contributors
- Anonymous contributor
- etendra2501
- Christine_Yang
- garanews
- christian.dinh
- Anonymous contributor
Contribute to Docs
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.