logo

Tamanho do vetor C++()

Determina o número de elementos no vetor.

matriz de bytes para string

Sintaxe

Considere um vetor 'v' e um número de elementos 'n'. A sintaxe seria:

 int n=v.size(); 

Parâmetro

Não contém nenhum parâmetro.

Valor de retorno

Ele retorna o número de elementos do vetor.

Exemplo 1

Vejamos um exemplo simples.

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

Neste exemplo, o vetor v contendo duas strings e a função size() fornecem o número de elementos no vetor.

Exemplo 2

Vejamos outro exemplo simples.

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

Neste exemplo, o vetor v contendo valores inteiros e a função size() determina o número de elementos no vetor.