logo

Dimensiunea vectorului C++ ()

Determină numărul de elemente din vector.

str.inlocuire in java

Sintaxă

Considerăm un vector „v” și un număr de elemente „n”. Sintaxa ar fi:

 int n=v.size(); 

Parametru

Nu conține niciun parametru.

Valoare returnată

Returnează numărul de elemente din vector.

Exemplul 1

Să vedem un exemplu simplu.

 #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>

În acest exemplu, vectorul v care conține două șiruri de caractere și funcția size() oferă numărul de elemente din vector.

Exemplul 2

Să vedem un alt exemplu simplu.

 #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>

În acest exemplu, vectorul v care conține valori întregi și funcția size() determină numărul de elemente din vector.