logo

Mida del vector C++ ()

Determina el nombre d'elements del vector.

iterador de mapes java

Sintaxi

Considereu un vector 'v' i un nombre d'elements 'n'. La sintaxi seria:

 int n=v.size(); 

Paràmetre

No conté cap paràmetre.

Valor de retorn

Retorna el nombre d'elements del vector.

Exemple 1

Vegem un exemple senzill.

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

En aquest exemple, el vector v que conté dues cadenes i la funció size() dóna el nombre d'elements del vector.

Exemple 2

Vegem un altre exemple senzill.

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

En aquest exemple, el vector v que conté valors enters i la funció size() determina el nombre d'elements del vector.