logo

Dimensione vettore C++()

Determina il numero di elementi nel vettore.

stringa Java dell'array

Sintassi

Considera un vettore 'v' e un numero di elementi 'n'. La sintassi sarebbe:

 int n=v.size(); 

Parametro

Non contiene alcun parametro.

Valore di ritorno

Restituisce il numero di elementi nel vettore.

Esempio 1

Vediamo un semplice esempio.

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

In questo esempio, il vettore v contenente due stringhe e la funzione size() fornisce il numero di elementi nel vettore.

Esempio 2

Vediamo un altro semplice esempio.

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

In questo esempio, il vettore v contenente valori interi e la funzione size() determina il numero di elementi nel vettore.