Determina el número de elementos en el vector.
análisis de java
Sintaxis
Considere un vector 'v' y un número de elementos 'n'. La sintaxis sería:
int n=v.size();
Parámetro
No contiene ningún parámetro.
Valor de retorno
Devuelve el número de elementos del vector.
Ejemplo 1
Veamos un ejemplo sencillo.
#include #include using namespace std; int main() { vector v{'Welcome to javaTpoint','c'}; int n=v.size(); cout<<'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'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<<'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 este ejemplo, el vector v que contiene dos cadenas y la función size() proporciona el número de elementos en el vector.
Ejemplo 2
Veamos otro ejemplo sencillo.
#include #include using namespace std; int main() { vector v{1,2,3,4,5}; int n=v.size(); cout<<\'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 este ejemplo, el vector v que contiene valores enteros y la función size() determina el número de elementos en el vector.
\'size>'size>