logo

C++ Vector size()

Він визначає кількість елементів у векторі.

панда тане

Синтаксис

Розглянемо вектор 'v' і число елементів 'n'. Синтаксис буде таким:

 int n=v.size(); 

Параметр

Він не містить жодного параметра.

Повернене значення

Він повертає кількість елементів у векторі.

Приклад 1

Давайте розглянемо простий приклад.

 #include #include using namespace std; int main() { vector v{&apos;Welcome to javaTpoint&apos;,&apos;c&apos;}; int n=v.size(); cout&lt;<'size of the string is :'<<n; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> Size of the string is:2 </pre> <p>In this example, vector v containing two strings and size() function gives the number of elements in the vector.</p> <h2>Example 2</h2> <p>Let&apos;s see a another simple example.</p> <pre> #include #include using namespace std; int main() { vector v{1,2,3,4,5}; int n=v.size(); cout&lt;<'size of the vector is :'<<n; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> Size of the vector is :5 </pre> <p>In this example, vector v containing integer values and size() function determines the number of elements in the vector.</p></'size></pre></'size>

У цьому прикладі вектор v містить два рядки, а функція size() дає кількість елементів у векторі.

Приклад 2

Давайте розглянемо ще один простий приклад.

 #include #include using namespace std; int main() { vector v{1,2,3,4,5}; int n=v.size(); cout&lt;<\'size of the vector is :\'<<n; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> Size of the vector is :5 </pre> <p>In this example, vector v containing integer values and size() function determines the number of elements in the vector.</p></\'size>

У цьому прикладі вектор v містить цілі значення, а функція size() визначає кількість елементів у векторі.